Server-side rendered navigation menu with smooth animations and responsive design for better performance.
pnpm dlx shadcn@latest add https://tiendatdev.me/r/navigation-menu-ssr.json
import {
NavigationMenuSSR,
} from "@/components/NavigationMenuSSR";export function NavigationDemo() {
return (
<NavigationMenuSSR
items={[
{ label: "Home", href: "/" },
{ label: "About", href: "/about" },
{ label: "Services", href: "/services" },
{ label: "Contact", href: "/contact" }
]}
className="bg-white shadow-md"
variant="horizontal"
/>
);
}