"use client"; import Link from "next/link"; import { usePathname } from "next/navigation"; import { NavigationMenu, NavigationMenuItem, NavigationMenuLink, NavigationMenuList, navigationMenuTriggerStyle, } from "@/components/ui/navigation-menu"; export function Navigation() { const pathname = usePathname(); const navItems = [ { href: "/", label: "Home" }, { href: "/about", label: "About" }, { href: "/services", label: "Services" }, { href: "/portfolio", label: "Portfolio" }, { href: "/contact", label: "Contact" }, ]; return (
Biohazard VFX {navItems.map((item) => ( {item.label} ))}
); }