"use client"; import Link from "next/link"; import { usePathname } from "next/navigation"; interface NavLinksProps { mobile?: boolean; onLinkClick?: () => void; } const NavLinks = ({ mobile = false, onLinkClick }: NavLinksProps) => { const pathname = usePathname(); const containerClass = mobile ? "flex flex-col items-center gap-4 text-lg min-[828px]:flex-row min-[828px]:gap-6" : "hidden md:flex items-center gap-8 text-lg"; return ( ); }; export default NavLinks;