1 2 3 4 5 6 7 8 9export default function NotFound() { return ( <main> <h1>404 - Page Not Found</h1> <p>The page you are looking for does not exist.</p> </main> ); }
1 2 3 4 5 6 7 8 9
export default function NotFound() { return ( <main> <h1>404 - Page Not Found</h1> <p>The page you are looking for does not exist.</p> </main> ); }