SPB Git forge

spb/rareindex

Public
54commits 1branches 0releases
7.1 MBsize
maindefault branch
10 days agolast push
TypeScript 61.9% HTML 37.2% SQL 0.7%
492 B · 17 lines tsx
Raw Blame History
1import Link from 'next/link';2import { EmptyState } from '@/components/ui/primitives';34export default function NotFound() {5  return (6    <EmptyState7      title="Page not found"8      description="The asset, market or page you requested does not exist or has been merged into another record."9      action={10        <Link href="/" className="rounded-md border border-border px-3 py-1.5 text-xs font-medium hover:bg-inset">11          Back to RareIndex12        </Link>13      }14    />15  );16}17