TypeScript 97.5%
SQL 1.4%
Python 0.8%
1import Link from "next/link";2import { Button } from "@/components/ui/button";3import { Logo } from "@/components/ui/logo";45export default function NotFound() {6 return (7 <div className="flex flex-1 flex-col items-center justify-center px-6 py-24 text-center">8 <Logo />9 <p className="mt-10 font-mono text-[12px] uppercase tracking-widest text-fg-subtle">404 · NOT_FOUND</p>10 <h1 className="mt-3 text-2xl font-semibold tracking-tight">This page could not be fetched.</h1>11 <p className="mt-2 max-w-sm text-[14px] text-fg-muted">The URL you requested does not exist on fetcha.co. Check the address or head back home.</p>12 <div className="mt-8 flex gap-2">13 <Button asChild><Link href="/">Go home</Link></Button>14 <Button asChild variant="outline"><Link href="/docs">Documentation</Link></Button>15 </div>16 </div>17 );18}19