Merge pull request #9 from ElTimuro/DOC-87_Custom-404

Custom 404 page created
This commit is contained in:
Timur Ercan
2023-02-15 17:42:02 +01:00
committed by GitHub
2 changed files with 30 additions and 6 deletions

View File

@ -1,10 +1,34 @@
import Link from "next/link";
import { ArrowSmallLeftIcon } from "@heroicons/react/20/solid";
export default function FourOhFour() {
import { Button } from "@documenso/ui";
import Logo from "../components/logo";
export default function Custom404() {
return (
<>
<h1>404 - Page Not Found</h1>
<Link href="/">Go back home</Link>
<main className="relative min-h-full bg-gray-100 isolate">
<Logo className="absolute w-20 top-10 left-10" />
<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-brown">404</p>
<h1 className="mt-4 text-3xl font-bold tracking-tight text-brown sm:text-5xl">
Page not found
</h1>
<p className="mt-4 text-base text-gray-700 sm:mt-6">
Sorry, we couldnt find the page youre looking for.
</p>
<div className="flex justify-center mt-10">
<Button
color="secondary"
href="/"
icon={ArrowSmallLeftIcon}
className="text-base font-semibold leading-7 text-brown"
>
Back to home
</Button>
</div>
</div>
</main>
</>
);
}