From b850511f6f3af5b22dcf700a0cc970bcde9bcab3 Mon Sep 17 00:00:00 2001 From: notshop Date: Sun, 26 Apr 2026 16:36:10 +0000 Subject: [PATCH] chore: add client/src/pages/not-found.tsx --- client/src/pages/not-found.tsx | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 client/src/pages/not-found.tsx diff --git a/client/src/pages/not-found.tsx b/client/src/pages/not-found.tsx new file mode 100644 index 0000000..1a8374a --- /dev/null +++ b/client/src/pages/not-found.tsx @@ -0,0 +1,12 @@ +import { Link } from "wouter"; + +export default function NotFound() { + return ( +
+

404

+

Page not found

+

The page you're looking for doesn't exist.

+ ← Back to shop +
+ ); +}