Blog 01
ncdai/blog-01UnverifiedBlock
A blog section with a grid layout.
Install it
npx shadcn@latest add https://raw.githubusercontent.com/exekartik/exeKartik/main/blog-01.jsonSource
1import { ArrowRightIcon } from "lucide-react"23import { Button } from "@/components/ui/button"4import { ArticleItem } from "@/registry/blocks/blog-01/components/article-item"56export default function Blog01() {7 return (8 <div className="container mx-auto flex flex-col gap-8 px-4 py-8">9 <h2 className="ml-4 font-heading text-4xl font-medium tracking-tight md:text-5xl">10 Blog11 </h2>1213 <div className="grid gap-4 md:grid-cols-2 lg:grid-cols-3">14 {articles.map((article) => (15 <a key={article.id} className="block h-full" href="#">16 <ArticleItem17 title={article.title}18 coverUrl={article.coverUrl}19 createdAt={article.createdAt}20 />21 </a>22 ))}23 </div>2425 <div className="flex justify-center">26 <Button className="gap-2 pr-2.5 pl-3" asChild>27 <a href="#">28 View All29 <ArrowRightIcon />30 </a>31 </Button>32 </div>33 </div>34 )35}3637type Article = {38 id: string39 title: string40 coverUrl: string41 createdAt: string42}4344const articles: Article[] = [45 {46 id: "1",47 title:48 "Apple unveils iPhone 17 Pro: Aluminum frame returns, new colors, upgraded camera",49 coverUrl:50 "https://assets.chanhdai.com/registry/images/blocks/blog-01/1.webp",51 createdAt: "2025-09-13",52 },53 {54 id: "2",55 title:56 'While the world is expecting AGI, François Chollet is showing just how "naive" AI can be',57 coverUrl:58 "https://assets.chanhdai.com/registry/images/blocks/blog-01/2.webp",59 createdAt: "2025-04-21",60 },61 {62 id: "3",63 title:64 "Apple introduces iPhone 16e: A powerful new model for the iPhone 16 lineup",65 coverUrl:66 "https://assets.chanhdai.com/registry/images/blocks/blog-01/3.webp",67 createdAt: "2025-02-20",68 },69 {70 id: "4",71 title:72 "Apple unveils MacBook Pro M4: Same design, base model now with 16GB RAM, priced from $1,599",73 coverUrl:74 "https://assets.chanhdai.com/registry/images/blocks/blog-01/4.webp",75 createdAt: "2024-10-31",76 },77 {78 id: "5",79 title:80 "Apple unveils new Mac mini M4: Smaller, 16GB RAM on the base model, priced from $599",81 coverUrl:82 "https://assets.chanhdai.com/registry/images/blocks/blog-01/5.webp",83 createdAt: "2024-10-31",84 },85 {86 id: "6",87 title:88 "Apple unveils iMac M4: Unchanged design, more powerful M4 chip, RAM starts at 16GB, priced from $1,299",89// … truncated
What it pulls in
npm packages
Other registry items
Files it writes
More from ncdai
All 17 items| Component | Registry | Kind | Access | Installs | Command |
|---|---|---|---|---|---|
| Blog 02blog-02 | ncdai | Blocks | Unverified | 1 dep · 2 files | |
| Experience 01experience-01 | ncdai | Blocks | Unverified | no deps | |
| Hero 01hero-01 | ncdai | Blocks | Unverified | no deps · 2 files | |
| Login 01login-01 | ncdai | Blocks | Unverified | no deps · 2 files | |
| Metrics 01metrics-01 | ncdai | Blocks | Unverified | 1 dep · 2 files | |
| Not Found 01not-found-01 | ncdai | Blocks | Free | 3 deps · 11 files | |
| Social Links 01social-links-01 | ncdai | Blocks | Unverified | no deps | |
| Social Proof 01social-proof-01 | ncdai | Blocks | Unverified | no deps |
