import { usePageContext } from "vike-react/usePageContext"; import { Link } from "@/components/common/Link"; import { navigation } from "@/lib/navigation"; import clsx from "clsx"; export function Navigation({ className, onLinkClick, }: { className?: string; onLinkClick?: React.MouseEventHandler; }) { const { urlPathname } = usePageContext(); return ( ); }