Components
Loading preview...
A dropdown menu with smooth spring animations.
npx shadcn@latest add https://21st.dev/r/0xUrvish/smooth-dropdown"use client";
import TwentyTwelveOne from "@/components/ui/smooth-dropdown";
export default function Demo() {
return (
<div className="flex items-center justify-center w-full min-h-screen bg-background p-8">
<TwentyTwelveOne />
</div>
);
}