BlockDex

Components

Registries

Free blocks

Method

BlockDex

Components

Registries

Free blocks

Method

Open API

BlockDex

Components

Registries

Free blocks

Method

Open API

Components/efferd/blogs-1

blogs-1

efferd-/blogs-1
FreeBlock

Minimalist list with dashed dividers.

Live preview

live · rendered by the registry
Rendered by efferd on their own page — this is the component running, not a screenshot of it.

Install it

npx shadcn@latest add http://efferd.com/r/blogs-1.json

Source

registry/blocks/blogs/1/index.tsxefferd.com/r/blogs-1.json
1import { cn } from "@/lib/utils";
2import { FullWidthDivider } from "@/components/full-width-divider";
3
4const blogs = [
5 {
6 title: "The New Design",
7 date: "May 20 2025",
8 description:
9 "What everyone new to the field should know, and how we can help.",
10 href: "#",
11 },
12 {
13 title: "Letter Club",
14 date: "Aug 14 2025",
15 description: "An ode to the slow web.",
16 href: "#",
17 },
18 {
19 title: "Have the Coffee",
20 date: "Sep 19 2025",
21 description: "Carve space out for oppurtunity.",
22 href: "#",
23 },
24 {
25 title: "Shadcn UI",
26 date: "Oct 12 2025",
27 description: "Building modern applications with reusable components.",
28 href: "#",
29 },
30 {
31 title: "Fesgin",
32 date: "Nov 23 2025",
33 description: "Exploring the intersection of design and development.",
34 href: "#",
35 },
36];
37
38export function BlogsSection() {
39 return (
40 <div className="mx-auto flex min-h-screen w-full max-w-3xl flex-col justify-start md:border-x">
41 <div className="space-y-2 px-4 py-8 md:py-12">
42 <h1 className="font-semibold text-2xl tracking-wide md:text-4xl">
43 Latest Blogs
44 </h1>
45 <p className="text-muted-foreground text-sm">
46 Discover the latest trends and insights in the world of design and
47 technology.
48 </p>
49 </div>
50
51 <div className="relative">
52 <FullWidthDivider />
53 <div className="divide-y">
54 {blogs.map((blog) => (
55 <BlogCard {...blog} key={blog.title} />
56 ))}
57 </div>
58 <FullWidthDivider />
59 </div>
60 </div>
61 );
62}
63
64function BlogCard({
65 title,
66 date,
67 description,
68 className,
69 ...props
70}: React.ComponentProps<"a"> & {
71 title: string;
72 date: string;
73 description: string;
74}) {
75 return (
76 <a
77 className={cn(
78 "group flex h-24 w-full flex-col justify-center gap-y-1 p-4 hover:cursor-pointer hover:bg-accent/30 active:bg-accent dark:active:bg-accent/50",
79 className
80 )}
81 {...props}
82 >
83 <div className="relative flex items-end justify-center gap-2">
84 <h3 className="whitespace-nowrap font-medium text-foreground text-lg md:text-xl">
85 {title}
86 </h3>
87 <span className="mb-[6px] w-full border-b-2 border-dashed" />
88 <span className="whitespace-nowrap font-mono text-muted-foreground text-xs uppercase group-hover:text-foreground md:text-sm">
89 {date}
90 </span>
91 </div>
92 <div className="max-w-sm text-muted-foreground text-sm group-hover:text-foreground md:max-w-full md:text-base">
93 {description}
94 </div>
95 </a>
96 );
97}

What it pulls in

Other registry items

  • @efferd/full-width-divider

Files it writes

  • registry/blocks/blogs/1/index.tsx

Facts

Registry
efferd
Type
registry:block
Access
Free
Files written
1
Licence
the repository states none
First indexed
2026-08-02
Last confirmed
today

Go to the source

Docs on efferd efferd.com Raw registry item This item as JSON

More from efferd

All 201 items
Same registry, same kind — the ones you would have found next
ComponentRegistryKindAccessInstallsCommand
app-shell-1app-shell-1efferdBlocksPaidno deps · 7 files
app-shell-10app-shell-10efferdBlocksPaid1 dep · 13 files
app-shell-2app-shell-2efferdBlocksPaidno deps · 9 files
app-shell-3app-shell-3efferdBlocksPaidno deps · 9 files
app-shell-4app-shell-4efferdBlocksPaidno deps · 9 files
app-shell-5app-shell-5efferdBlocksFree1 dep · 9 files
app-shell-6app-shell-6efferdBlocksPaidno deps · 11 files
app-shell-7app-shell-7efferdBlocksPaidno deps · 12 files
BlockDex

Built by

Kynth Studio

Index

Components
Registries
Method
Open API

Guides

shadcn component libraries
Best shadcn registries
Free shadcn blocks

Reference

Corpus counts
Crawl health
hello@kynth.studio
Privacy
Terms

BlockDex

BlockDex

Built by

Kynth Studio

Index

Components
Registries
Method
Open API

Guides

shadcn component libraries
Best shadcn registries
Free shadcn blocks

Reference

Corpus counts
Crawl health
hello@kynth.studio
Privacy
Terms

BlockDex

BlockDex

Built by

Kynth Studio

Index

Components
Registries
Method
Open API

Guides

shadcn component libraries
Best shadcn registries
Free shadcn blocks

Reference

Corpus counts
Crawl health
hello@kynth.studio
Privacy
Terms

BlockDex