From 9c5a0005554c78e92458389f2c25b19606701d72 Mon Sep 17 00:00:00 2001 From: atharvaombase Date: Wed, 26 Feb 2025 18:02:16 +0530 Subject: [PATCH] Feat:Custom Page not found page --- Frontend/src/pages/UserPages/NotFoundPage.jsx | 245 ++++++++++++++++++ 1 file changed, 245 insertions(+) create mode 100644 Frontend/src/pages/UserPages/NotFoundPage.jsx diff --git a/Frontend/src/pages/UserPages/NotFoundPage.jsx b/Frontend/src/pages/UserPages/NotFoundPage.jsx new file mode 100644 index 0000000..9d8bd6e --- /dev/null +++ b/Frontend/src/pages/UserPages/NotFoundPage.jsx @@ -0,0 +1,245 @@ +import { Link } from "react-router-dom"; + +const NotFoundPage = () => { + return ( +
+ {/* Placeholder SVG - Replace this with your SVG */} + + + {/* Page number and title */} +

Page Not Found

+ + {/* Description text */} +

+ Sorry, we couldn't find the page you were looking for. It may have + been moved or deleted. +

+ + {/* Call-to-action button */} + + Go Home + +
+ ); +}; + +export default NotFoundPage;