export default function Home()

in app/not-found.tsx [22:40]


export default function Home() {
  const pathname = usePathname();

  return (
    <div>
      <ReturnToHomepagePanel>
        <div className='py-4'>
          <div>
            <b>404 </b>
            | That&apos;s an error.
          </div>
          <div>
            The requested URL {pathname} was not found on this server.
          </div>
        </div>
      </ReturnToHomepagePanel>
    </div>
  );
}