"use client"; import { usePathname } from "next/navigation"; import Link from "next/link"; export const NavigationRail = () => { const pathname = usePathname(); return ( ); };