File size: 506 Bytes
42ae0b9
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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>
  );
}