{"id":31495329,"url":"https://github.com/blopa/zenkai-zone-blog","last_synced_at":"2025-10-02T14:52:51.284Z","repository":{"id":294060279,"uuid":"985874069","full_name":"blopa/zenkai-zone-blog","owner":"blopa","description":null,"archived":false,"fork":false,"pushed_at":"2025-09-27T00:43:20.000Z","size":2155,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-09-27T02:38:48.198Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/blopa.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-05-18T17:44:25.000Z","updated_at":"2025-09-27T00:43:23.000Z","dependencies_parsed_at":"2025-05-18T18:41:47.679Z","dependency_job_id":"80be8eb7-ef6f-425a-bb10-b7c53c92c6f1","html_url":"https://github.com/blopa/zenkai-zone-blog","commit_stats":null,"previous_names":["blopa/zenkai-zone-blog"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/blopa/zenkai-zone-blog","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/blopa%2Fzenkai-zone-blog","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/blopa%2Fzenkai-zone-blog/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/blopa%2Fzenkai-zone-blog/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/blopa%2Fzenkai-zone-blog/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/blopa","download_url":"https://codeload.github.com/blopa/zenkai-zone-blog/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/blopa%2Fzenkai-zone-blog/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":278022171,"owners_count":25916679,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-10-02T02:00:08.890Z","response_time":67,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2025-10-02T14:52:49.129Z","updated_at":"2025-10-02T14:52:51.278Z","avatar_url":"https://github.com/blopa.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Zenkai Zone Blog\n\nA modern, statically generated blog built with Next.js, focused on action figure news, reviews, and announcements.\n\n## Features\n\n- 🚀 **Static Site Generation (SSG)** - Fully static, JAMstack-ready\n- 📱 **Responsive Design** - Works perfectly on all devices\n- 🎨 **Modern UI** - Built with Tailwind CSS and shadcn/ui\n- 🔍 **Search Functionality** - Find posts quickly\n- 🏷️ **Tags \u0026 Categories** - Organized content structure\n- 📖 **Markdown Support** - Easy content management\n- 🌙 **Dark Mode** - Toggle between light and dark themes\n- ⚡ **Fast Performance** - Optimized for speed\n\n## Getting Started\n\n### Prerequisites\n\n- Node.js 18+\n- npm or yarn\n\n### Installation\n\n1. Clone the repository:\n   \\`\\`\\`bash\n   git clone \u003cyour-repo-url\u003e\n   cd zenkai-zone-blog\n   \\`\\`\\`\n\n2. Install dependencies:\n   \\`\\`\\`bash\n   npm install\n   \\`\\`\\`\n\n3. Run the development server:\n   \\`\\`\\`bash\n   npm run dev\n   \\`\\`\\`\n\n4. Open [http://localhost:3000](http://localhost:3000) in your browser.\n\n### Building for Production\n\nTo build the static site:\n\n\\`\\`\\`bash\nnpm run build\n\\`\\`\\`\n\nThis will generate a static site in the `out` directory that can be deployed to any static hosting service.\n\n## Content Management\n\n### Adding New Posts\n\n1. Create a new markdown file in `data/blog/YYYY/` directory\n2. Add frontmatter with required fields:\n\n\\`\\`\\`markdown\n---\ntitle: \"Your Post Title\"\ndate: \"2024-01-01\"\nexcerpt: \"Brief description of your post\"\ncoverImage: \"/path/to/image.jpg\"\nauthor:\nname: \"Author Name\"\navatar: \"/path/to/avatar.jpg\"\ncategory: \"Category Name\"\ntags: [\"tag1\", \"tag2\", \"tag3\"]\nreadingTime: \"5 min read\"\n---\n\nYour post content here...\n\\`\\`\\`\n\n### Organizing Content\n\n- **Categories**: Group related posts (e.g., \"Dragon Ball\", \"One Piece\", \"Naruto\")\n- **Tags**: Add specific keywords for better discoverability\n- **Images**: Place images in the `public` directory and reference them in posts\n\n## Deployment\n\nThis blog is optimized for JAMstack deployment. You can deploy it to:\n\n- **Vercel** (recommended)\n- **Netlify**\n- **GitHub Pages**\n- **Any static hosting service**\n\n### Deploy to Vercel\n\n1. Push your code to GitHub\n2. Connect your repository to Vercel\n3. Vercel will automatically detect Next.js and deploy your site\n\n### Deploy to Netlify\n\n1. Build the site: `npm run build`\n2. Upload the `out` directory to Netlify\n3. Configure redirects if needed\n\n## Customization\n\n### Styling\n\n- Modify `tailwind.config.ts` for theme customization\n- Update `app/globals.css` for global styles\n- Components use shadcn/ui for consistent design\n\n### Configuration\n\n- Update `lib/constants.ts` for site-wide settings\n- Modify `next.config.mjs` for build configuration\n\n## Contributing\n\n1. Fork the repository\n2. Create a feature branch\n3. Make your changes\n4. Submit a pull request\n\n## License\n\nThis project is open source and available under the [MIT License](LICENSE).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fblopa%2Fzenkai-zone-blog","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fblopa%2Fzenkai-zone-blog","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fblopa%2Fzenkai-zone-blog/lists"}