{"id":30226090,"url":"https://github.com/magicuidesign/blog-template","last_synced_at":"2025-08-14T16:03:24.510Z","repository":{"id":309766201,"uuid":"1026304835","full_name":"magicuidesign/blog-template","owner":"magicuidesign","description":"A minimal blog template built using Next.js.","archived":false,"fork":false,"pushed_at":"2025-08-13T16:58:13.000Z","size":1991,"stargazers_count":3,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-08-13T18:48:13.760Z","etag":null,"topics":["fumadocs","magicui","nextjs","react","shadcn","tailwindcss"],"latest_commit_sha":null,"homepage":"https://blog-magicui.vercel.app/","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/magicuidesign.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-07-25T16:48:07.000Z","updated_at":"2025-08-13T18:39:07.000Z","dependencies_parsed_at":"2025-08-13T18:48:22.432Z","dependency_job_id":"ac144c69-0093-42c8-a11f-301cb413153c","html_url":"https://github.com/magicuidesign/blog-template","commit_stats":null,"previous_names":["magicuidesign/blog-template"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/magicuidesign/blog-template","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/magicuidesign%2Fblog-template","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/magicuidesign%2Fblog-template/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/magicuidesign%2Fblog-template/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/magicuidesign%2Fblog-template/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/magicuidesign","download_url":"https://codeload.github.com/magicuidesign/blog-template/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/magicuidesign%2Fblog-template/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":270444332,"owners_count":24584739,"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-14T02:00:10.309Z","response_time":75,"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":["fumadocs","magicui","nextjs","react","shadcn","tailwindcss"],"created_at":"2025-08-14T16:01:40.812Z","updated_at":"2025-08-14T16:03:24.500Z","avatar_url":"https://github.com/magicuidesign.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# MagicUI Blog\n\nA modern, responsive blog built with Next.js 15, Fumadocs MDX, and Tailwind CSS. Beautiful interface for displaying articles, tutorials, and insights about React and modern web development.\n\n## ✨ Features\n\n- 🎨 **Modern Design** - Clean, responsive interface\n- 📝 **MDX Support** - Write blog posts in MDX with full component support\n- 🌙 **Dark Mode** - Built-in dark/light theme toggle\n- 🏷️ **Tags \u0026 Categories** - Organize content with tags\n- ⭐ **Featured Posts** - Highlight your best articles\n- 📱 **Mobile Responsive** - Perfect on all devices\n- 🚀 **Fast Performance** - Optimized with Next.js 15\n\n## 🚀 Getting Started\n\n```bash\n# Clone the repository\ngit clone \u003crepo-url\u003e\ncd blog-template\n\n# Install dependencies\npnpm install\n\n# Start development server\npnpm dev\n\n# Build for production\npnpm build\n```\n\n## ✍️ Adding Blog Posts\n\nCreate a new MDX file in `blog/content/` with format `your-post-title.mdx`:\n\n````mdx\n---\ntitle: \"Your Blog Post Title\"\ndescription: \"A brief description of your post\"\ndate: \"2024-12-01\"\ntags: [\"React\", \"Next.js\", \"Tutorial\"]\nfeatured: true\nreadTime: \"10 min read\"\nauthor: \"Your Name\"\n---\n\nYour blog post content here...\n\n## Markdown Support\n\nYou can use all standard Markdown features plus MDX components.\n\n```tsx\n// Code syntax highlighting works great!\nexport default function Component() {\n  return \u003cdiv\u003eHello World!\u003c/div\u003e;\n}\n```\n````\n\n## 🎨 Customization\n\n### Adding New Tags/Categories\n\nSimply add them to your blog post frontmatter. The system automatically generates tag pages.\n\n### Featured Posts\n\nSet `featured: true` in your blog post frontmatter to highlight it on the homepage (you can create a dedicated feature section in the home page).\n\n### Styling\n\nThe project uses Tailwind CSS with a custom design system. Modify styles in:\n\n- `app/globals.css` - Global styles\n- Individual component files - Component-specific styles\n\n### For Authors\n\nAdd your author details to the `lib/authors.ts` file.\n\n```tsx\n// lib/authors.ts\nexport const authors: Record\u003cstring, Author\u003e = {\n  dillion: {\n    name: \"Dillion Verma\",\n    position: \"Software Engineer\",\n    avatar: \"/authors/dillion.png\",\n  },\n  arghya: {\n    name: \"Arghya Das\",\n    position: \"Design System Engineer\",\n    avatar: \"/authors/arghya.png\",\n  },\n  // Add your author details here\n  yourname: {\n    name: \"Your Full Name\",\n    position: \"Your Position/Title\",\n    avatar: \"/authors/your-avatar.png\",\n  },\n} as const;\n```\n\nThen reference your author in blog posts using the key (e.g., `author: \"yourname\"`).\n\n## 📖 Technologies Used\n\n- **Next.js 15** - React framework with App Router\n- **Fumadocs MDX** - MDX processing and components\n- **Tailwind CSS** - Utility-first CSS framework\n- **TypeScript** - Type-safe JavaScript\n- **Geist Font** - Modern typography\n\n## 🤝 Contributing\n\nContributions are welcome! Please feel free to 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%2Fmagicuidesign%2Fblog-template","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmagicuidesign%2Fblog-template","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmagicuidesign%2Fblog-template/lists"}