Skip to content

Commit 0d72399

Browse files
authored
Merge pull request #17 from BeyteFlow/features/404
Create 404Page.tsx
2 parents bae0871 + 9f5340e commit 0d72399

1 file changed

Lines changed: 45 additions & 0 deletions

File tree

src/pages/404Page.tsx

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
import React from 'react';
2+
3+
const NotFound: React.FC = () => {
4+
return (
5+
<div className="min-h-screen bg-[#F7F7F7] flex flex-col items-center justify-center px-6 font-sans">
6+
{/* Brand Header Style */}
7+
<nav className="absolute top-0 w-full py-8 text-center">
8+
<h1 className="text-xl font-medium tracking-[0.2em] text-[#1A1A1A]">ZAYQ</h1>
9+
</nav>
10+
11+
<main className="text-center">
12+
{/* Large 404 Number with the Card Background color */}
13+
<h2 className="text-[120px] font-light leading-none text-[#E0E0E0] mb-4">
14+
404
15+
</h2>
16+
17+
<h3 className="text-2xl md:text-3xl font-normal text-[#1A1A1A] mb-4">
18+
This path wasn't chosen with intention.
19+
</h3>
20+
21+
<p className="text-[#555555] max-w-md mx-auto mb-10 leading-relaxed">
22+
The page you are looking for doesn't exist or has been moved.
23+
Let's get you back to where things feel right.
24+
</p>
25+
26+
{/* The ZAYQ Signature Button Style */}
27+
<a
28+
href="/"
29+
className="inline-block bg-[#1A1A1A] text-[#F7F7F7] px-10 py-3 text-sm font-medium tracking-wide rounded-[4px] transition-opacity hover:opacity-90"
30+
>
31+
Back to Home
32+
</a>
33+
</main>
34+
35+
{/* Subtle Footer */}
36+
<footer className="absolute bottom-10 w-full text-center">
37+
<p className="text-xs text-[#555555] tracking-widest uppercase">
38+
© 2024 ZAYQ. All rights reserved.
39+
</p>
40+
</footer>
41+
</div>
42+
);
43+
};
44+
45+
export default NotFound;

0 commit comments

Comments
 (0)