{"id":28889717,"url":"https://github.com/menteora/react-next-blog","last_synced_at":"2025-10-25T15:09:29.397Z","repository":{"id":298674598,"uuid":"999492097","full_name":"menteora/react-next-blog","owner":"menteora","description":null,"archived":false,"fork":false,"pushed_at":"2025-06-19T15:50:43.000Z","size":1268,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2025-07-23T18:22:07.329Z","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/menteora.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}},"created_at":"2025-06-10T10:32:41.000Z","updated_at":"2025-06-19T15:44:45.000Z","dependencies_parsed_at":"2025-06-12T09:40:14.672Z","dependency_job_id":"b469ef6d-d315-45f8-a712-9f03f20e1c45","html_url":"https://github.com/menteora/react-next-blog","commit_stats":null,"previous_names":["menteora/react-next-blog"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/menteora/react-next-blog","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/menteora%2Freact-next-blog","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/menteora%2Freact-next-blog/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/menteora%2Freact-next-blog/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/menteora%2Freact-next-blog/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/menteora","download_url":"https://codeload.github.com/menteora/react-next-blog/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/menteora%2Freact-next-blog/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":270792508,"owners_count":24646200,"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-08-16T02:00:11.002Z","response_time":91,"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-06-21T00:11:12.766Z","updated_at":"2025-10-25T15:09:24.361Z","avatar_url":"https://github.com/menteora.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"This is a [Next.js](https://nextjs.org) project bootstrapped with [`create-next-app`](https://nextjs.org/docs/app/api-reference/cli/create-next-app).\n\n## Getting Started\n\nFirst, run the development server:\n\n```bash\nnpm run dev\n# or\nyarn dev\n# or\npnpm dev\n# or\nbun dev\n```\n\nOpen [http://localhost:3000](http://localhost:3000) with your browser to see the result.\n\nYou can start editing the page by modifying `app/page.tsx`. The page auto-updates as you edit the file.\n\nThis project uses [`next/font`](https://nextjs.org/docs/app/building-your-application/optimizing/fonts) to automatically optimize and load [Geist](https://vercel.com/font), a new font family for Vercel.\n\n## Learn More\n\nTo learn more about Next.js, take a look at the following resources:\n\n- [Next.js Documentation](https://nextjs.org/docs) - learn about Next.js features and API.\n- [Learn Next.js](https://nextjs.org/learn) - an interactive Next.js tutorial.\n\nYou can check out [the Next.js GitHub repository](https://github.com/vercel/next.js) - your feedback and contributions are welcome!\n\n## Deploy on Vercel\n\nThe easiest way to deploy your Next.js app is to use the [Vercel Platform](https://vercel.com/new?utm_medium=default-template\u0026filter=next.js\u0026utm_source=create-next-app\u0026utm_campaign=create-next-app-readme) from the creators of Next.js.\n\nCheck out our [Next.js deployment documentation](https://nextjs.org/docs/app/building-your-application/deploying) for more details.\n\n## Blog Content Structure\n\nMarkdown files in `public/content` drive the blog:\n\n- `public/content/posts` - individual blog posts. Each file name becomes the URL slug and must contain YAML front matter (see existing posts for examples).\n- `public/content/pages` - static pages such as `about.md`.\n- `public/config.yml` - site-wide values like the blog title and hero image.\n\n## Building and Exporting\n\nRun the build command to create the static site:\n\n```bash\nnpm run build\n```\n\n`next.config.ts` sets `output: 'export'`, so `next build` automatically runs `next export` and produces the static files in the `out` directory. If you remove that option you must run `next export` after the build.\n\nThe configuration also sets `basePath` and `assetPrefix` to `/react-next-blog` and disables image optimization (`images.unoptimized = true`) so the exported files work when hosted on GitHub Pages.\n\n## Adding Posts and Pages\n\n1. Create a new Markdown file in `public/content/posts` (or `public/content/pages`).\n2. Include the front matter fields (`title`, `date`, `author`, etc.).\n3. Update any global settings in `public/config.yml` if needed.\n\n## Commit Workflow\n\nBefore committing, run ESLint and fix any issues:\n\n```bash\nnpm run lint\n```\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmenteora%2Freact-next-blog","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmenteora%2Freact-next-blog","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmenteora%2Freact-next-blog/lists"}