Components
An interactive flashcard stack with a hover animation that smoothly expands into individual cards using spring-based motion.
Loading preview...
import { FlashcardStack } from "@/components/ui/flashcard-stack";
export default function DemoOne() {
return (
<main
className="flex min-h-screen h-full w-full items-center justify-center p-8"
>
<div className="pt-24">
<FlashcardStack />
</div>
</main>
)
}