diff --git a/src/App.jsx b/src/App.jsx index 309d9c7..2325d2b 100644 --- a/src/App.jsx +++ b/src/App.jsx @@ -15,6 +15,7 @@ import About from "./Pages/About"; import "./index.css"; import Signup from "./Pages/Signup"; +import NotFound from "./Pages/NotFound"; const App = () => { return ( @@ -31,6 +32,7 @@ const App = () => { } /> } /> } /> + } /> diff --git a/src/Pages/NotFound.jsx b/src/Pages/NotFound.jsx new file mode 100644 index 0000000..1ff7512 --- /dev/null +++ b/src/Pages/NotFound.jsx @@ -0,0 +1,20 @@ +import { Link } from "react-router-dom"; + +function NotFound() { + return ( +
+
+

+ 404 - Not Found! +

+

+ Sorry! the page your are looking for was either not found or does not exist. Try refreshing the page or click the button below to go back to the home page. +

+ +
+ +
+ ) +} + +export default NotFound; \ No newline at end of file