16 lines
564 B
TypeScript
16 lines
564 B
TypeScript
import Link from "next/link";
|
|
|
|
export default function NotFound() {
|
|
return (
|
|
<div className="flex min-h-screen flex-col items-center justify-center px-6">
|
|
<h1 className="text-4xl font-bold text-stone-900">Memorial Not Found</h1>
|
|
<p className="mt-4 text-stone-600">This memorial page does not exist or has not been published yet.</p>
|
|
<Link
|
|
href="/"
|
|
className="mt-8 rounded-lg bg-primary px-6 py-2 text-sm font-medium text-white transition-colors hover:bg-primary-light"
|
|
>
|
|
Go Home
|
|
</Link>
|
|
</div>
|
|
);
|
|
} |