diff --git a/src/App.tsx b/src/App.tsx index 1239da7..5791076 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -9,6 +9,7 @@ import Services from './pages/Services'; import Contact from './pages/Contact'; import Blog from './pages/Blog'; import BlogPost from './components/BlogPost'; +import NotFound from './pages/NotFound'; import CookieBanner from "./components/CookieBanner"; import NavigationBar from './components/NavigationBar'; @@ -40,6 +41,7 @@ const App: React.FC = () => { }/> }/> }/> + }/> diff --git a/src/components/Footer.tsx b/src/components/Footer.tsx index 227e214..48f1cef 100644 --- a/src/components/Footer.tsx +++ b/src/components/Footer.tsx @@ -58,7 +58,7 @@ const Footer = () => {
-

© {new Date().getFullYear()} e-Stop Driving School. All rights reserved. Website Full-Stack Programmers — LISA GOREWIT-DECKER

+

© {new Date().getFullYear()} e-Stop Driving School. All rights reserved. Full-Stack Developer — Lisa Gorewit-Decker

diff --git a/src/pages/NotFound.tsx b/src/pages/NotFound.tsx new file mode 100644 index 0000000..b6b4afb --- /dev/null +++ b/src/pages/NotFound.tsx @@ -0,0 +1,49 @@ +import React, { FC } from 'react'; +import { Link } from 'react-router-dom'; +import { Container, Button } from 'react-bootstrap'; + +import 'bootstrap/dist/css/bootstrap.min.css'; +import 'bootstrap-icons/font/bootstrap-icons.css'; + +const NotFound: FC = () => { + return ( +
+
+
+

+ 404 PAGE NOT FOUND. +

+

+ The page you are looking for might have been removed, had its name changed, or is temporarily unavailable. +

+
+
+ + +
+
+ +
+

{"Oops! You've drifted off course."}

+

+ {"Don't worry, even the best drivers make a wrong turn sometimes. Let's get you back on the right road!"} +

+
+ + + + + + +
+
+
+
+ ); +}; + +export default NotFound;