mirror of
https://github.com/ChatGPTNextWeb/ChatGPT-Next-Web.git
synced 2025-05-19 12:10:17 +09:00
13 lines
203 B
TypeScript
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>
|
|
</>
|
|
);
|
|
}
|