'use client'; import HttpStatusPage from '@/components/HttpStatusPage'; import { clsx } from 'clsx/lite'; import { usePathname } from 'next/navigation'; export default function NotFound() { const pathname = usePathname(); return ( {pathname} {' '} could not be found ); }