File tree Expand file tree Collapse file tree 1 file changed +20
-2
lines changed
Expand file tree Collapse file tree 1 file changed +20
-2
lines changed Original file line number Diff line number Diff line change 1- import React from "react " ;
1+ import Link from "next/link " ;
22
33const 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
725export default NotFound ;
You can’t perform that action at this time.
0 commit comments