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