'use client';
import { usePathname } from 'next/navigation';
export default function Page() {
// When URL is /blog/hello, pathname = '/blog/hello'
// When URL is /dashboard?v=2, pathname = '/dashboard'
const pathname = usePathname();
return <div>{pathname}</div>;
}
