You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
website/pages/404.tsx

17 lines
540 B
TypeScript

import { pacifico } from "@/pages/index";
import Link from "next/link";
export default function Custom404() {
return (
<div className={`flex flex-col items-center ${pacifico.variable} justify-center h-screen`}>
<div className="font-pacifico text-center leading-relaxed md:leading-normal">
<h1 className="text-3xl text-base mb-10">
404 | Page Not Found
</h1>
<h2 className="text-2xl text-crust underline">
<Link href="/">Go Back Home</Link>
</h2>
</div>
</div>
)
}