ChatGPT-Next-Web/app/500.tsx

13 lines
203 B
TypeScript
Raw Normal View History

2023-03-10 18:25:33 +00:00
import Link from "next/link";
export default function FourOhFour() {
return (
<>
<h1>500 - Page Not Found</h1>
<Link href="/">
<a>Go back home</a>
</Link>
</>
);
}