๐Ÿ“ฆ cloudflare / vinext

๐Ÿ“„ not-found.tsx ยท 9 lines
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>
  );
}