blob: 9a39bf8a5f78ad9ad09e4bc38e1eec03fcede685 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
import Link from "next/link";
export default function NotFound() {
return (
<main className="flex flex-col text-center">
<div className="bg-center bg-no-repeat bg-[url('/jumbotron.webp')] bg-gray-700 bg-blend-multiply">
<div className="mx-auto max-w-screen-xl h-screen pt-40 space-y-5">
<h1 className="text-7xl font-medium">404</h1>
<h1 className="text-4xl font-light">The page you are looking for does not exist.</h1>
</div>
</div>
</main>
)
}
|