2023-02-13 22:33:39 +01:00
|
|
|
|
import Image from "next/image";
|
|
|
|
|
|
import Link from "next/link";
|
|
|
|
|
|
|
|
|
|
|
|
import bgwood from "../public/img/bgwood.jpg";
|
2023-02-13 23:31:38 +01:00
|
|
|
|
import Logo from "../components/logo";
|
2023-02-13 22:33:39 +01:00
|
|
|
|
|
|
|
|
|
|
export default function Custom404() {
|
|
|
|
|
|
return (
|
|
|
|
|
|
<>
|
|
|
|
|
|
<main className="relative min-h-full isolate">
|
2023-02-13 23:31:38 +01:00
|
|
|
|
<Logo className="absolute w-20 top-10 left-10" />
|
2023-02-13 22:33:39 +01:00
|
|
|
|
<Image
|
|
|
|
|
|
src={bgwood}
|
|
|
|
|
|
alt=""
|
|
|
|
|
|
className="absolute inset-0 object-cover object-top w-full h-full -z-10 grayscale"
|
|
|
|
|
|
/>
|
|
|
|
|
|
<div className="px-6 py-48 mx-auto text-center max-w-7xl sm:py-40 lg:px-8">
|
|
|
|
|
|
<p className="text-base font-semibold leading-8 text-slate-700">
|
|
|
|
|
|
404
|
|
|
|
|
|
</p>
|
2023-02-13 23:31:38 +01:00
|
|
|
|
<h1 className="mt-4 text-3xl font-bold tracking-tight text-brown sm:text-5xl font-monteserrat">
|
2023-02-13 22:33:39 +01:00
|
|
|
|
Page not found
|
|
|
|
|
|
</h1>
|
|
|
|
|
|
<p className="mt-4 text-base text-slate-700 sm:mt-6">
|
|
|
|
|
|
Sorry, we couldn’t find the page you’re looking for.
|
|
|
|
|
|
</p>
|
|
|
|
|
|
<div className="flex justify-center mt-10">
|
|
|
|
|
|
<Link
|
|
|
|
|
|
href="/"
|
2023-02-13 23:31:38 +01:00
|
|
|
|
className="text-sm font-semibold leading-7 text-brown font-monteserrat"
|
2023-02-13 22:33:39 +01:00
|
|
|
|
>
|
|
|
|
|
|
<span aria-hidden="true">←</span> Back to home
|
|
|
|
|
|
</Link>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</main>
|
|
|
|
|
|
</>
|
|
|
|
|
|
);
|
|
|
|
|
|
}
|