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;