www_site/app/not-found.tsx

7 lines
600 B
TypeScript
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import Link from "next/link";
import { BrandIcon } from "@/components/brand-icon";
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="/"><BrandIcon /></Link></div>;
}