7 lines
545 B
TypeScript
7 lines
545 B
TypeScript
import Link from "next/link";
|
|
import { Button } from "@/components/ui/button";
|
|
|
|
export default function NotFound() {
|
|
return <section className="grid min-h-[60vh] place-items-center px-4 text-center"><div><span className="text-7xl font-black text-cyan-500">404</span><h1 className="mt-3 text-3xl font-black">Este tesoro no existe</h1><p className="mt-3 text-slate-500">Regresa al catálogo para continuar explorando.</p><Button asChild variant="magenta" className="mt-6"><Link href="/catalog">Ir al catálogo</Link></Button></div></section>;
|
|
}
|