ChatGPT-Next-Web/app/404.tsx

13 lines
203 B
TypeScript

import Link from "next/link";
export default function FourOhFour() {
return (
<>
<h1>404 - Page Not Found</h1>
<Link href="/">
<a>Go back home</a>
</Link>
</>
);
}