aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/client/pages/NotFoundPage.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/client/pages/NotFoundPage.tsx')
-rw-r--r--src/client/pages/NotFoundPage.tsx11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/client/pages/NotFoundPage.tsx b/src/client/pages/NotFoundPage.tsx
new file mode 100644
index 0000000..289dab5
--- /dev/null
+++ b/src/client/pages/NotFoundPage.tsx
@@ -0,0 +1,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>
+ );
+}