import { usePathname } from 'next/navigation' export function ReadPathname() { const pathname = usePathname() return (
{pathname}
) }