Skip to content

Commit

Permalink
Merge pull request #711 from AZBL/AZBL/700-add-custom-404-page
Browse files Browse the repository at this point in the history
Added custom 404 page / addresses ticket 700
  • Loading branch information
CodeWritingCow committed Jun 25, 2024
2 parents c7eee60 + ba35724 commit 882bef0
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions src/app/not-found.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
import { ThemeButtonLink } from "@/components/ThemeButton";
import { Header } from "@/components";

export default function NotFound() {
return (
<>
<div className="flex flex-col min-h-screen">
<Header />
<main className="flex-grow flex items-center justify-center">
<div className="text-center">
<h2 className="heading-3xl mb-4">404</h2>
<p className="body-md mb-4">This page cannot be found.</p>
<ThemeButtonLink
href={"/"}
className="text-[#03141B] mx-auto inline-block"
color="secondary"
label="Return to Home"
/>
</div>
</main>
</div>
</>
);
}

0 comments on commit 882bef0

Please sign in to comment.