BlockDex

Components

Registries

Free blocks

Method

BlockDex

Components

Registries

Free blocks

Method

Open API

BlockDex

Components

Registries

Free blocks

Method

Open API

Components/freddy/feature-1

feature-1

freddy/feature-1
FreeBlock

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

Install it

npx shadcn@latest add https://ui.arkcabin.com/r/feature-1.json

Source

registry/blocks/feature/1/feature-card.tsxui.arkcabin.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
freddy
Type
registry:block
Access
Free
Files written
1
Licence
NOASSERTION
First indexed
2026-08-01
Last confirmed
yesterday

Go to the source

ui.arkcabin.com arkcabin/freddy-ui on GitHub Raw registry item This item as JSON

More from freddy

All 60 items
Same registry, same kind — the ones you would have found next
ComponentRegistryKindAccessInstallsCommand
announcement-1announcement-1freddyBlocksFree1 dep
announcement-2announcement-2freddyBlocksFree1 dep
announcement-3announcement-3freddyBlocksFree1 dep
auth-1auth-1freddyBlocksFreeno deps · 2 files
auth-10auth-10freddyBlocksFreeno deps
auth-11auth-11freddyBlocksFreeno deps
auth-12auth-12freddyBlocksFreeno deps
auth-2auth-2freddyBlocksFree1 dep · 3 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