Skip to content

Commit 83f5e9e

Browse files
committed
chore: style fixed
1 parent 0abb51f commit 83f5e9e

File tree

1 file changed

+20
-2
lines changed

1 file changed

+20
-2
lines changed

src/app/not-found.tsx

Lines changed: 20 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,25 @@
1-
import React from "react";
1+
import Link from "next/link";
22

33
const NotFound = () => {
4-
return <div>NotFound</div>;
4+
return (
5+
<section className="w-full h-screen flex flex-col justify-center items-center bg-[#0F1115] text-gray-100 px-6">
6+
<div className="text-center">
7+
<h1 className="text-9xl font-bold text-red-500 mb-4">404</h1>
8+
<h2 className="text-3xl md:text-4xl font-semibold mb-4">
9+
Page Not Found
10+
</h2>
11+
<p className="text-gray-400 max-w-md mx-auto mb-6">
12+
Oops! The page you are looking for doesn’t exist or has been moved.
13+
</p>
14+
<Link
15+
href="/"
16+
className="w-full bg-background cursor-pointer mt-3 py-3 px-5 flex gap-2 justify-center items-center rounded-lg border border-gray-700 text-gray-200 transition-all hover:border-red-500 hover:text-red-500"
17+
>
18+
Go Back Home
19+
</Link>
20+
</div>
21+
</section>
22+
);
523
};
624

725
export default NotFound;

0 commit comments

Comments
 (0)