| import { Link } from "wouter"; | |
| export default function NotFound() { | |
| return ( | |
| <div className="flex flex-col items-center justify-center h-screen gap-4" style={{ background: "var(--bg-base)", color: "var(--text-primary)" }}> | |
| <span style={{ fontSize: 64, opacity: 0.2 }}>/</span> | |
| <h1 className="text-2xl font-semibold">404 — Page not found</h1> | |
| <Link href="/" className="text-sm" style={{ color: "var(--accent-blue)" }}> | |
| ← Back to Analyzer | |
| </Link> | |
| </div> | |
| ); | |
| } | |