interface NotFoundProps { pathname?: string; } export default function NotFound({ pathname }: NotFoundProps) { return (
404 / NOT FOUND

This route is outside the starter.

{pathname ? ( <> Nothing is registered at {pathname}. ) : ( "The page you requested does not exist." )}

Return home
); }