SPB Git forge
15commits 1branches 0releases
29.7 MBsize
maindefault branch
10 days agolast push
TypeScript 36.3% Python 31.8% Go 18% JavaScript 9.8% Shell 1.9% SQL 1.4% CSS 0.5%
706 B · 17 lines tsx
Raw Blame History
1import Link from 'next/link';2import { Logo } from '@/components/chrome/Logo';34export default function NotFound() {5  return (6    <div className="mx-auto flex min-h-[60vh] max-w-[720px] flex-col items-start justify-center gap-4 px-5 py-16">7      <Logo size={28} />8      <p className="label">404 · not observed</p>9      <h1 className="text-2xl font-medium tracking-tight">This scope is not part of the observatory.</h1>10      <p className="text-ink-2">We only publish pages for countries, ASNs, services and incidents where we hold real measurements. Nothing is pretended.</p>11      <Link href="/" className="text-accent hover:underline">12        ← Back to the gauge13      </Link>14    </div>15  );16}17