31 lines
732 B
TypeScript
31 lines
732 B
TypeScript
|
import Footer from "@/components/shared/Footer";
|
||
|
import Navbar from "@/components/shared/Navbar";
|
||
|
import Link from "next/link";
|
||
|
|
||
|
const NotFound = () => {
|
||
|
return (
|
||
|
<>
|
||
|
<main className="flex flex-col min-h-screen">
|
||
|
<Navbar />
|
||
|
<section
|
||
|
id="404error"
|
||
|
className="flex-center flex-col wrapper container flex-1 flex-grow"
|
||
|
>
|
||
|
<h1 className="text-3xl md:text-5xl text-center">
|
||
|
<span className="text-red-500">404</span> Page not Found
|
||
|
</h1>
|
||
|
<p className="text-lg mt-3 text-muted-foreground">
|
||
|
Please return back to{" "}
|
||
|
<Link href="/" className="underline font-bold">
|
||
|
Home
|
||
|
</Link>
|
||
|
</p>
|
||
|
</section>
|
||
|
<Footer />
|
||
|
</main>
|
||
|
</>
|
||
|
);
|
||
|
};
|
||
|
|
||
|
export default NotFound;
|