-
Notifications
You must be signed in to change notification settings - Fork 2.6k
Expand file tree
/
Copy pathnot-found.tsx
More file actions
27 lines (26 loc) · 1.01 KB
/
not-found.tsx
File metadata and controls
27 lines (26 loc) · 1.01 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
import Link from 'next/link';
import { CircleIcon } from 'lucide-react';
export default function NotFound() {
return (
<div className="flex items-center justify-center min-h-[100dvh]">
<div className="max-w-md space-y-8 p-4 text-center">
<div className="flex justify-center">
<CircleIcon className="size-12 text-orange-500" />
</div>
<h1 className="text-4xl font-bold text-gray-900 tracking-tight">
Page Not Found
</h1>
<p className="text-base text-gray-500">
The page you are looking for might have been removed, had its name
changed, or is temporarily unavailable.
</p>
<Link
href="/"
className="max-w-48 mx-auto flex justify-center py-2 px-4 border border-gray-300 rounded-full shadow-sm text-sm font-medium text-gray-700 bg-white hover:bg-gray-50 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-orange-500"
>
Back to Home
</Link>
</div>
</div>
);
}