aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/client/pages/NotFoundPage.tsx
blob: 289dab55908551d0c908cdf1ef4996620938944e (plain)
1
2
3
4
5
6
7
8
9
10
11
import { Link } from "wouter";

export function NotFoundPage() {
	return (
		<div>
			<h1>404 - Not Found</h1>
			<p>The page you're looking for doesn't exist.</p>
			<Link href="/">Go to Home</Link>
		</div>
	);
}