'use client' import Link from "next/link" import { usePathname } from 'next/navigation' export default function Navbar({ children }: { children?: React.ReactNode }) { const pathname = usePathname() return ( <>
) }