BlockDex

Components

Registries

Free blocks

Method

BlockDex

Components

Registries

Free blocks

Method

Open API

BlockDex

Components

Registries

Free blocks

Method

Open API

Components/efferd/feature-1

feature-1

efferd/feature-1
FreeBlock

Minimal feature card with icon, title, and subtle grid background.

Install it

npx shadcn@latest add https://legacy.efferd.com/r/feature-1.json

Source

registry/blocks/feature/1/feature-card.tsxlegacy.efferd.com/r/feature-1.json
1import type React from "react";
2
3// https://magicui.design/docs/components/grid-pattern
4import { GridPattern } from "@/components/ui/grid-pattern";
5
6import { cn } from "@/lib/utils";
7
8type FeatureType = {
9 title: string;
10 icon: React.ComponentType<React.SVGProps<SVGSVGElement>>;
11 description: string;
12};
13
14type FeatureCardPorps = React.ComponentProps<"div"> & {
15 feature: FeatureType;
16};
17
18export function FeatureCard({
19 feature,
20 className,
21 ...props
22}: FeatureCardPorps) {
23 return (
24 <div className={cn("relative overflow-hidden p-6", className)} {...props}>
25 <div className="-mt-2 -ml-20 pointer-events-none absolute top-0 left-1/2 size-full [mask-image:radial-gradient(farthest-side_at_top,white,transparent)]">
26 <GridPattern
27 className="absolute inset-0 size-full stroke-foreground/20"
28 height={40}
29 width={40}
30 x={5}
31 />
32 </div>
33 <feature.icon
34 aria-hidden
35 className="size-6 text-foreground/75"
36 strokeWidth={1}
37 />
38 <h3 className="mt-10 text-sm md:text-base">{feature.title}</h3>
39 <p className="relative z-20 mt-2 font-light text-muted-foreground text-xs">
40 {feature.description}
41 </p>
42 </div>
43 );
44}

What it pulls in

npm packages

  • motion

Other registry items

  • https://magicui.design/r/grid-pattern.json

Files it writes

  • registry/blocks/feature/1/feature-card.tsx

Facts

Registry
efferd
Type
registry:block
Access
Free
Files written
1
Licence
NOASSERTION
First indexed
2026-08-01
Last confirmed
yesterday

Go to the source

legacy.efferd.com shabanhr/efferd-ui on GitHub Raw registry item This item as JSON

More from efferd

All 40 items
Same registry, same kind — the ones you would have found next
ComponentRegistryKindAccessInstallsCommand
auth-1auth-1efferdBlocksFreeno deps · 2 files
auth-2auth-2efferdBlocksFree1 dep · 3 files
contact-1contact-1efferdBlocksFreeno deps
contact-2contact-2efferdBlocksFreeno deps
cta-1cta-1efferdBlocksFreeno deps
cta-2cta-2efferdBlocksFreeno deps
cta-3cta-3efferdBlocksFreeno deps
cta-4cta-4efferdBlocksFreeno deps
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