"use client"; import Link from "next/link"; import { usePathname } from "next/navigation"; import styles from "../styles/layout.module.css"; export const Nav = () => { const pathname = usePathname(); return ( ); };