()
| 3 | import { Button } from "@/components/ui/button" |
| 4 | |
| 5 | export default function NotFound() { |
| 6 | return ( |
| 7 | <div className="min-h-screen bg-[var(--color-bg)]"> |
| 8 | <Header /> |
| 9 | |
| 10 | {/* Hero */} |
| 11 | <section className="border-b border-[var(--color-border-weak)] px-[var(--padding)] py-[var(--vertical-padding)]"> |
| 12 | <div className="mx-auto max-w-[67.5rem]"> |
| 13 | <h1 className="text-2xl font-semibold text-[var(--color-text-strong)]"> |
| 14 | 404 - Page Not Found |
| 15 | </h1> |
| 16 | <p className="mt-1 text-[var(--color-text)]"> |
| 17 | The page you're looking for doesn't exist. |
| 18 | </p> |
| 19 | </div> |
| 20 | </section> |
| 21 | |
| 22 | {/* Content */} |
| 23 | <main className="px-[var(--padding)] py-[var(--vertical-padding)]"> |
| 24 | <div className="mx-auto max-w-[67.5rem]"> |
| 25 | <div className="flex flex-col items-center justify-center gap-6 rounded border border-[var(--color-border-weak)] bg-[var(--color-bg-weak)] py-16"> |
| 26 | <div className="text-6xl font-bold text-[var(--color-text-weak)]">404</div> |
| 27 | <p className="text-center text-[var(--color-text)]"> |
| 28 | Sorry, we couldn't find what you were looking for. |
| 29 | </p> |
| 30 | <div className="flex gap-4"> |
| 31 | <Link href="/"> |
| 32 | <Button>Go Home</Button> |
| 33 | </Link> |
| 34 | <Link href="/search"> |
| 35 | <Button variant="outline">Browse Extensions</Button> |
| 36 | </Link> |
| 37 | </div> |
| 38 | </div> |
| 39 | </div> |
| 40 | </main> |
| 41 | </div> |
| 42 | ) |
| 43 | } |
nothing calls this directly
no outgoing calls
no test coverage detected