www_site/app/not-found.tsx

6 lines
534 B
TypeScript
Raw Normal View History

import Link from "next/link";
export default function NotFound() {
return <div className="container-shell flex min-h-[560px] flex-col items-center justify-center py-20 text-center"><p className="eyebrow">404 / Not found</p><h1 className="mt-6 text-5xl font-semibold tracking-[-0.06em]"></h1><p className="mt-5 max-w-md text-sm leading-7 text-muted"></p><Link className="button-primary mt-8" href="/"></Link></div>;
}