From 7d896f830fef401475e574c3449f569cef2c41e3 Mon Sep 17 00:00:00 2001 From: Amishmaqbool Date: Sat, 30 Aug 2025 01:30:52 +0500 Subject: [PATCH 1/3] 404 page added --- app/not-found.tsx | 27 ++++- components/layout/Footer.tsx | 4 - components/sections/ComparisonSection.tsx | 4 +- components/sections/FeaturesSection.tsx | 2 +- components/sections/HeroSection.tsx | 2 +- components/sections/HowItWorksSection.tsx | 5 +- public/not-found.svg | 123 ++++++++++++++++++++++ 7 files changed, 155 insertions(+), 12 deletions(-) create mode 100644 public/not-found.svg diff --git a/app/not-found.tsx b/app/not-found.tsx index 7ae36f3..15250ea 100644 --- a/app/not-found.tsx +++ b/app/not-found.tsx @@ -1,7 +1,30 @@ +import Notfound from "../public/not-found.svg"; +import Image from "next/image"; +import Link from "next/link"; + export default function NotFound() { return ( -
-

404 | Page Not Found

+
+
+ Not Found +
+ 404 +
+

+ OOps! +
Page Not Found +

+

+ Sorry about that! Please visit our homepage to get where you need to + go. +

+ + + +
); } diff --git a/components/layout/Footer.tsx b/components/layout/Footer.tsx index 9426431..b624ad0 100644 --- a/components/layout/Footer.tsx +++ b/components/layout/Footer.tsx @@ -7,7 +7,6 @@ export const Footer = () => {