TTime/frontend/src/Pages/NotFoundPage.tsx

19 lines
465 B
TypeScript
Raw Normal View History

2024-03-18 19:34:15 +01:00
import Button from "../Components/Button";
export default function NotFoundPage(): JSX.Element {
return (
<div className="flex flex-col items-center justify-center min-h-screen bg-white">
<h1 className="text-[30px]">404 Page Not Found</h1>
<a href="/">
<Button
text="Go to Home Page"
onClick={(): void => {
localStorage.clear();
}}
type="button"
/>
</a>
</div>
);
}