{ "$schema": "https://ui.shadcn.com/schema/registry-item.json", "name": "blog-01", "title": "Blog 01", "author": "tusharvarshney ", "description": "A blog section with a grid layout.", "dependencies": [ "date-fns" ], "registryDependencies": [ "button" ], "files": [ { "path": "src/registry/blocks/blog-01/blog-01.tsx", "content": "import { ArrowRightIcon } from \"lucide-react\"\n\nimport { Button } from \"@/components/ui/button\"\nimport { ArticleItem } from \"@/registry/blocks/blog-01/components/article-item\"\n\nexport default function Blog01() {\n return (\n
\n

\n Blog\n

\n\n
\n {articles.map((article) => (\n \n \n \n ))}\n
\n\n
\n \n
\n
\n )\n}\n\ntype Article = {\n id: string\n title: string\n coverUrl: string\n createdAt: string\n}\n\nconst articles: Article[] = [\n {\n id: \"1\",\n title:\n \"Apple unveils iPhone 17 Pro: Aluminum frame returns, new colors, upgraded camera\",\n coverUrl:\n \"https://assets.tusharvarshney.com/registry/images/blocks/blog-01/1.webp\",\n createdAt: \"2025-09-13\",\n },\n {\n id: \"2\",\n title:\n 'While the world is expecting AGI, François Chollet is showing just how \"naive\" AI can be',\n coverUrl:\n \"https://assets.tusharvarshney.com/registry/images/blocks/blog-01/2.webp\",\n createdAt: \"2025-04-21\",\n },\n {\n id: \"3\",\n title:\n \"Apple introduces iPhone 16e: A powerful new model for the iPhone 16 lineup\",\n coverUrl:\n \"https://assets.tusharvarshney.com/registry/images/blocks/blog-01/3.webp\",\n createdAt: \"2025-02-20\",\n },\n {\n id: \"4\",\n title:\n \"Apple unveils MacBook Pro M4: Same design, base model now with 16GB RAM, priced from $1,599\",\n coverUrl:\n \"https://assets.tusharvarshney.com/registry/images/blocks/blog-01/4.webp\",\n createdAt: \"2024-10-31\",\n },\n {\n id: \"5\",\n title:\n \"Apple unveils new Mac mini M4: Smaller, 16GB RAM on the base model, priced from $599\",\n coverUrl:\n \"https://assets.tusharvarshney.com/registry/images/blocks/blog-01/5.webp\",\n createdAt: \"2024-10-31\",\n },\n {\n id: \"6\",\n title:\n \"Apple unveils iMac M4: Unchanged design, more powerful M4 chip, RAM starts at 16GB, priced from $1,299\",\n coverUrl:\n \"https://assets.tusharvarshney.com/registry/images/blocks/blog-01/6.webp\",\n createdAt: \"2024-10-29\",\n },\n]\n", "type": "registry:component", "target": "@components/blog-01.tsx" }, { "path": "src/registry/blocks/blog-01/components/article-item.tsx", "content": "import { format } from \"date-fns\"\n\nexport type ArticleItemProps = {\n title: string\n coverUrl: string\n createdAt: string\n}\n\nexport function ArticleItem({ title, coverUrl, createdAt }: ArticleItemProps) {\n return (\n
\n
\n
\n \n
\n
\n
\n\n
\n \n {format(new Date(createdAt), \"MMMM d, yyyy\")}\n \n\n

\n {title}\n

\n
\n
\n )\n}\n", "type": "registry:component", "target": "@components/article-item.tsx" } ], "meta": { "createdAt": "2026-03-13" }, "categories": [ "content", "blog" ], "type": "registry:block" }