SPB Git forge

spb/market-atlas

Public
12commits 1branches 0releases
1.1 MBsize
maindefault branch
10 days agolast push
TypeScript 96.7% SQL 1.6% CSS 0.8% JavaScript 0.5%
890 B · 20 lines tsx
Raw Blame History
1import Link from "next/link";2import { Page } from "@/components/ui/section";3import { SearchButton } from "@/components/layout/search-dialog";45export default function NotFound() {6  return (7    <Page className="py-20 text-center">8      <p className="text-[11px] font-medium uppercase tracking-wide text-ink-3">404</p>9      <h1 className="mt-2 text-3xl font-semibold tracking-tight">Not on the map</h1>10      <p className="mx-auto mt-2 max-w-md text-sm text-ink-2">This instrument, venue or page is not in the atlas. Try the universal search — symbols, names, exchanges and countries all resolve.</p>11      <div className="mt-6 flex justify-center gap-2">12        <SearchButton />13        <Link href="/markets" className="inline-flex h-11 items-center rounded-md bg-ink px-4 text-sm font-medium text-canvas">14          Markets overview15        </Link>16      </div>17    </Page>18  );19}20