forked from MergeFi/frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnot-found.tsx
More file actions
21 lines (20 loc) · 733 Bytes
/
Copy pathnot-found.tsx
File metadata and controls
21 lines (20 loc) · 733 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import Link from "next/link";
import { Button } from "@/components/ui/Button";
export default function NotFound() {
return (
<div className="mx-auto flex max-w-xl flex-col items-center px-6 py-32 text-center">
<p className="text-sm font-medium uppercase tracking-widest text-indigo-600 dark:text-indigo-400">
404
</p>
<h1 className="mt-2 text-3xl font-semibold text-slate-900 dark:text-white">
Page not found
</h1>
<p className="mt-3 text-slate-500 dark:text-slate-400">
The page you're looking for doesn't exist or may have moved.
</p>
<Link href="/" className="mt-8">
<Button size="lg">Back to home</Button>
</Link>
</div>
);
}