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-frameworks

animated-frameworks

eldoraui/animated-frameworks
FreeComponent

An animated frameworks 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-frameworks.json

Source

registry/eldoraui/animated-frameworks.tsxeldoraui.site/r/animated-frameworks.json
1"use client"
2
3import { useEffect, useState } from "react"
4
5import { cn } from "@/lib/utils"
6import { Icons } from "@/components/icons"
7
8type AnimatedFrameworksProps = {
9 cardTitle?: string
10 cardDescription?: string
11}
12
13const AnimatedFrameworks = ({
14 cardTitle = "Universal Compatibility",
15 cardDescription = "Works seamlessly with Next.js, React, HTML, Apple, GitHub, OpenAI, and more fits everywhere.",
16}: AnimatedFrameworksProps) => {
17 return (
18 <div
19 className={cn(
20 "relative",
21 "flex flex-col justify-between",
22 "h-[20rem] space-y-4",
23 "rounded-md border bg-white shadow-sm",
24 "dark:border-neutral-800/50 dark:bg-[#171717]",
25 "border-neutral-200"
26 )}
27 >
28 <FrameworkCard />
29 <div className="px-4 pb-4">
30 <div className="text-sm font-semibold text-neutral-900 dark:text-white">
31 {cardTitle}
32 </div>
33 <div className="mt-2 text-xs text-neutral-600 dark:text-neutral-400">
34 {cardDescription}
35 </div>
36 </div>
37 </div>
38 )
39}
40
41export default AnimatedFrameworks
42
43const FrameworkCard = () => {
44 const [nextJsTransform, setNextJsTransform] = useState("none")
45 const [reactTransform, setReactTransform] = useState("none")
46 const [htmlTransform, setHtmlTransform] = useState("none")
47
48 useEffect(() => {
49 const cycleAnimations = async () => {
50 const upStyle = "translateY(-3.71px) rotateX(10.71deg) translateZ(20px)"
51 const downStyle = "none"
52
53 const transitionDuration = 1100
54
55 const durationOfUpState = 1200
56 const delayBetweenCards = 600
57
58 while (true) {
59 setReactTransform(upStyle)
60 await new Promise((resolve) => setTimeout(resolve, durationOfUpState))
61 setReactTransform(downStyle)
62 await new Promise((resolve) =>
63 setTimeout(resolve, transitionDuration + delayBetweenCards)
64 )
65
66 setNextJsTransform(upStyle)
67 await new Promise((resolve) => setTimeout(resolve, durationOfUpState))
68 setNextJsTransform(downStyle)
69 await new Promise((resolve) =>
70 setTimeout(resolve, transitionDuration + delayBetweenCards)
71 )
72
73 setHtmlTransform(upStyle)
74 await new Promise((resolve) => setTimeout(resolve, durationOfUpState))
75 setHtmlTransform(downStyle)
76 await new Promise((resolve) =>
77 setTimeout(resolve, transitionDuration + delayBetweenCards)
78 )
79 }
80 }
81
82 cycleAnimations()
83 }, [])
84
85 const cardClasses =
86// … truncated

What it pulls in

npm packages

  • motion
  • react

Other registry items

  • utils

Files it writes

  • registry/eldoraui/animated-frameworks.tsx

Facts

Registry
eldoraui
Type
registry:ui
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-badgeanimated-badgeeldorauiComponentsFree2 deps
animated-grid-patternanimated-grid-patterneldorauiComponentsFree3 deps
animated-listanimated-listeldorauiComponentsFree1 dep
animated-shiny-buttonanimated-shiny-buttoneldorauiComponentsFree1 dep
blur-in-textblur-in-texteldorauiComponentsFree3 deps
browserbrowsereldorauiComponentsFree2 deps
card-flip-hovercard-flip-hovereldorauiComponentsFree1 dep
clerk-otpclerk-otpeldorauiComponentsFree2 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