BlockDex

Components

Registries

Free blocks

Method

BlockDex

Components

Registries

Free blocks

Method

Open API

BlockDex

Components

Registries

Free blocks

Method

Open API

Components/eldoraui/animated-list-demo

animated-list-demo

eldoraui/animated-list-demo
FreeExample

Example showing a animated-list-demo component.

Live preview

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

Install it

npx shadcn@latest add https://eldoraui.site/r/animated-list-demo.json

Source

registry/example/animated-list-demo.tsxeldoraui.site/r/animated-list-demo.json
1import { AnimatedList } from "@/registry/eldoraui/animated-list"
2
3export function AnimatedListDemo() {
4 const notifications = [
5 { name: "Location", message: "Thomas has arrived home", time: "2h ago" },
6 { name: "Fitness", message: "Daily step goal reached!", time: "1h ago" },
7 {
8 name: "Calendar",
9 message: "Team meeting in 30 minutes",
10 time: "45m ago",
11 },
12 { name: "Tasks", message: "3 tasks due today", time: "1d ago" },
13 { name: "Health", message: "Heart rate elevated", time: "3h ago" },
14 { name: "Email", message: "New message from manager", time: "5m ago" },
15 { name: "Social", message: "Video got 1000 likes!", time: "2d ago" },
16 { name: "Family", message: "How are you doing?", time: "1w ago" },
17 { name: "Friends", message: "Coffee tomorrow?", time: "2d ago" },
18 { name: "Movies", message: "Did you see the new movie?", time: "4h ago" },
19 ]
20
21 return (
22 <div className="bg-background relative h-[400px] w-full overflow-hidden rounded-lg border">
23 <AnimatedList
24 stackGap={20}
25 columnGap={85}
26 scaleFactor={0.05}
27 scrollDownDuration={5}
28 formationDuration={1}
29 >
30 {notifications.map((notification, index) => (
31 <div
32 key={index}
33 className="bg-card flex w-full max-w-[350px] items-center gap-4 rounded-2xl border p-4 shadow-sm"
34 >
35 <div className="flex h-10 w-10 items-center justify-center rounded-full bg-cyan-500 text-sm font-medium text-white">
36 {notification.name.charAt(0)}
37 </div>
38 <div className="flex flex-1 flex-col">
39 <div className="flex items-center justify-between">
40 <span className="text-sm font-medium">{notification.name}</span>
41 <span className="text-muted-foreground text-xs">
42 {notification.time}
43 </span>
44 </div>
45 <span className="text-muted-foreground text-sm">
46 {notification.message}
47 </span>
48 </div>
49 </div>
50 ))}
51 </AnimatedList>
52 </div>
53 )
54}

What it pulls in

Other registry items

  • @eldoraui/animated-list

Files it writes

  • registry/example/animated-list-demo.tsx

Facts

Registry
eldoraui
Type
registry:example
Access
Free
Files written
1
Licence
the repository states none
First indexed
2026-08-01
Last confirmed
yesterday

Go to the source

Docs on eldoraui eldoraui.site karthikmudunuri/eldoraui on GitHub Raw registry item This item as JSON

More from eldoraui

All 115 items
Same registry, same kind — the ones you would have found next
ComponentRegistryKindAccessInstallsCommand
animated-badge-demoanimated-badge-demoeldorauiExamplesFreeno deps
animated-frameworks-demoanimated-frameworks-demoeldorauiExamplesFreeno deps
animated-grid-pattern-demoanimated-grid-pattern-demoeldorauiExamplesFreeno deps
animated-shiny-button-demoanimated-shiny-button-demoeldorauiExamplesFreeno deps
blur-in-text-demoblur-in-text-demoeldorauiExamplesFreeno deps
browser-demobrowser-demoeldorauiExamplesFreeno deps
browser-demo-2browser-demo-2eldorauiExamplesFreeno deps
card-flip-hover-democard-flip-hover-demoeldorauiExamplesFreeno 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