Components
Loading preview...
A modern React navigation component with an animated curved sidebar, interactive menu items, and social media footer. with smooth animations
@ishamsu
npx shadcn@latest add https://21st.dev/r/ishamsu/curved-menuimport Header from "@/components/ui/curved-menu";
const DemoOne = () => {
return (
<div className="min-h-screen bg-black">
<Header/>
<div className="text-white h-screen text-7xl text-center flex justify-center items-center">hello<span className="italic">!</span></div>
</div>
);
};
export { DemoOne };