-
-
Notifications
You must be signed in to change notification settings - Fork 169
Expand file tree
/
Copy pathNotFound.tsx
More file actions
43 lines (41 loc) · 1.42 KB
/
NotFound.tsx
File metadata and controls
43 lines (41 loc) · 1.42 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
"use client";
import Link from "next/link";
import Image from "next/image";
export default function NotFound() {
return (
<main className="flex w-full flex-grow flex-col justify-center bg-white px-4 py-20 sm:px-6 lg:py-40">
<div className="flex flex-shrink-0 justify-center">
<Link href="/">
<span className="sr-only">Codú</span>
<Image
src="/images/codu-black.png"
alt="Codú logo"
height={60}
width={189}
/>
</Link>
</div>
<div className="py-16">
<div className="text-center">
<p className="bg-gradient-to-r from-orange-400 to-pink-600 bg-clip-text text-xl font-semibold uppercase leading-6 tracking-wide text-transparent">
404 error
</p>
<h1 className="mt-2 text-4xl font-extrabold tracking-tight text-black sm:text-5xl">
Page not found.
</h1>
<p className="mt-2 text-base text-neutral-500">
Sorry, we couldn’t find the page you’re looking for.
</p>
<div className="mt-6">
<Link
className="bg-gradient-to-r from-orange-400 to-pink-600 bg-clip-text text-base font-semibold tracking-wide text-transparent"
href="/"
>
Return home<span aria-hidden="true"> →</span>
</Link>
</div>
</div>
</div>
</main>
);
}