chore: add client/src/pages/not-found.tsx

This commit is contained in:
notshop 2026-04-26 16:36:10 +00:00
parent 8190af5d1c
commit b850511f6f

View file

@ -0,0 +1,12 @@
import { Link } from "wouter";
export default function NotFound() {
return (
<div className="min-h-[60vh] flex flex-col items-center justify-center text-center px-4">
<h1 className="text-6xl font-bold text-muted-foreground/30 mb-4">404</h1>
<h2 className="text-2xl font-bold mb-3">Page not found</h2>
<p className="text-muted-foreground mb-6">The page you're looking for doesn't exist.</p>
<Link href="/" className="text-primary hover:underline"> Back to shop</Link>
</div>
);
}