aboutsummaryrefslogtreecommitdiff
path: root/apps/web/app/not-found.tsx
blob: d37d1e7c4e830e68d68a043ffa5c84cc7913bd51 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
"use client"; // Error boundaries must be Client Components

import { Button } from "@ui/components/button";
import { Title1Bold } from "@ui/text/title/title-1-bold";
import { useRouter } from "next/navigation";
import { useEffect } from "react";

export default function NotFound({
	error,
}: {
	error: Error & { digest?: string };
}) {
	const router = useRouter();
	useEffect(() => {
		// Log the error to an error reporting service
		console.error(error);
	}, [error]);

	return (
		<html lang="en">
			<body className="flex flex-col items-center justify-center h-screen">
				<Title1Bold>Page not found</Title1Bold>
				<Button onClick={() => router.back()}>Go back</Button>
			</body>
		</html>
	);
}