// Tailwind. import Navigation from "../Utils/Navigation"; import Button, { ButtonStyleType } from "./Button/Button"; import Route from "../../Types/API/Route"; import URL from "../../Types/API/URL"; import Email from "../../Types/Email"; import React, { FunctionComponent, ReactElement } from "react"; export interface ComponentProps { homeRoute: Route; supportEmail: Email; } const NotFound: FunctionComponent = ( props: ComponentProps, ): ReactElement => { return (

404

Page not found

Please check the URL in the address bar and try again.

); }; export default NotFound;