Focus Card
A modern card group component that highlights on hover, animated and visually appealing.
Neo
Millie
Millie Neo
Neo Banana
Neo 2
Bella
Install
pnpm dlx shadcn@latest add https://www.katestroyui.com/r/focus-cardUsage
1import { FocusCard } from "@/components/ui/focus-card";23const cards = [4 {5 title: "Neo",6 src: "https://placecats.com/neo/400/400",7 },8 {9 title: "Millie",10 src: "https://placecats.com/millie/400/400",11 },12 {13 title: "Millie Neo",14 src: "https://placecats.com/millie_neo/400/400",15 },16 {17 title: "Neo Banana",18 src: "https://placecats.com/neo_banana/400/400",19 },20 {21 title: "Neo 2",22 src: "https://placecats.com/neo_2/400/400",23 },24 {25 title: "Bella",26 src: "https://placecats.com/bella/400/400",27 },28];2930export function Example() {31 return <FocusCard cards={cards} />;32}
Props
| Prop | Type | Description | Default | 
|---|---|---|---|
| cards | Card[] | List of card data | - | 
Card Type
| Field | Type | Description | 
|---|---|---|
| title | string | Card title | 
| src | string | Card image |