;
49 | }
50 |
--------------------------------------------------------------------------------
/src/Containers/ErrorPageContainer.tsx:
--------------------------------------------------------------------------------
1 | // This container represents an error page
2 | // It displays an error message, an image, and a link to navigate back to the home screen
3 |
4 | import React from "react";
5 | import { Link } from "react-router-dom";
6 | import ErrorPageMessage from "../Components/ErrorPage/ErrorPageMessage";
7 | import RabbitPhoto from "../../src/assets/images/rabbitphoto.jpg";
8 |
9 | export default function ErrorPage() {
10 | return (
11 | <>
12 |
13 |
14 |
15 |
16 |
22 |
23 |
24 |
25 |
26 | Click on the Rabbit to get back to the home screen!
27 |