Files
oneuptime/Common/UI/Components/404.tsx
Simon Larsen 714823514c Refactor import paths in test and UI component files for consistency
- Updated import statements in various test files to use relative paths instead of absolute paths.
- Adjusted import paths in UI components to ensure they correctly reference the Types and Models directories.
- Ensured all components and tests are aligned with the new directory structure for better maintainability.
2025-05-21 16:19:35 +01:00

60 lines
2.0 KiB
TypeScript

// 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<ComponentProps> = (
props: ComponentProps,
): ReactElement => {
return (
<div className="mx-auto max-w-full sm:px-6 lg:px-8 rounded-lg">
<div className="min-h-full py-16 px-6 sm:py-24 md:grid md:place-items-center lg:px-8">
<div className="mx-auto">
<main className="sm:flex">
<p className="text-4xl tracking-tight text-indigo-600 sm:text-5xl">
404
</p>
<div className="sm:ml-6">
<div className="sm:border-l sm:border-gray-200 sm:pl-6">
<h1 className="text-4xl tracking-tight text-gray-900 sm:text-5xl">
Page not found
</h1>
<p className="mt-1 text-base text-gray-500">
Please check the URL in the address bar and try again.
</p>
</div>
<div className="mt-10 flex space-x-3 sm:border-l sm:border-transparent sm:pl-6">
<Button
title="Go Home"
buttonStyle={ButtonStyleType.PRIMARY}
onClick={() => {
Navigation.navigate(props.homeRoute);
}}
/>
<Button
title="Contact Support"
buttonStyle={ButtonStyleType.NORMAL}
onClick={() => {
Navigation.navigate(
URL.fromString("mailto:" + props.supportEmail.toString()),
);
}}
/>
</div>
</div>
</main>
</div>
</div>
</div>
);
};
export default NotFound;