forked from Northgate-Systems/RemitX
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnot-found.tsx
More file actions
44 lines (40 loc) · 1.75 KB
/
Copy pathnot-found.tsx
File metadata and controls
44 lines (40 loc) · 1.75 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
44
import Link from "next/link";
import { Landmark, Home, ArrowLeft } from "lucide-react";
export default function NotFound() {
return (
<main className="min-h-screen bg-gradient-to-br from-blue-50 to-gray-50 flex items-center justify-center px-4">
<div className="max-w-md w-full text-center">
<div className="flex items-center justify-center gap-2 mb-6">
<Landmark size={28} className="text-primary" />
<span className="font-bold text-2xl text-primary">RemitX</span>
</div>
<div className="text-[120px] lg:text-[160px] font-bold text-primary/10 leading-none select-none animate-elastic">
404
</div>
<h1 className="text-2xl lg:text-3xl font-bold text-primary mb-3 animate-slide-blur">
Page not found
</h1>
<p className="text-sm text-gray-500 mb-8 animate-slide-blur delay-100">
The page you're looking for doesn't exist or has been moved.
Let's get you back on track.
</p>
<div className="flex flex-col sm:flex-row gap-3 justify-center animate-slide-blur delay-200">
<Link
href="/"
className="inline-flex items-center justify-center gap-2 px-6 py-3 bg-primary text-white rounded-xl text-sm font-semibold hover:shadow-lg transition-all active:scale-95"
>
<Home size={16} />
Back to Home
</Link>
<Link
href="/login"
className="inline-flex items-center justify-center gap-2 px-6 py-3 border-2 border-gray-200 text-gray-700 rounded-xl text-sm font-semibold hover:bg-gray-50 transition-all active:scale-95"
>
<ArrowLeft size={16} />
Go to Login
</Link>
</div>
</div>
</main>
);
}