Skip to content

Commit

Permalink
Merge pull request #796 from centrapay/404-page
Browse files Browse the repository at this point in the history
404 Page
  • Loading branch information
AndyClifford authored Oct 5, 2023
2 parents ea34aed + 6c20415 commit 503f2ca
Showing 1 changed file with 39 additions and 0 deletions.
39 changes: 39 additions & 0 deletions src/pages/404.astro
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
---
import BaseLayout from '../layouts/BaseLayout.astro';
---

<BaseLayout>
<div class="px-16 py-8 flex flex-col items-center space-y-6 h-full justify-center">
<div class="flex flex-col items-center space-y-2">
<p class="text-content-accent type-body-2 font-bold">
404
</p>
<h1 class="type-headline-2 text-gray-900">
Page not found
</h1>
<p class="type-body-2 text-content-tertiary text-center">
Sorry, we couldn’t find the page you’re looking for.
</p>
</div>
<div class="flex space-x-2 items-center">
<a href="/">
<div
class="btn bg-interactive-primary border rounded-md"
>
<span class="type-caption-2 text-content-inverse-primary">
Go back home
</span>
</div>
</a>
<button
id="freshdesk"
type="button"
class="btn bg-interactive-tertiary border rounded-md"
>
<span class="type-caption-2 text-content-tertiary">
Contact support
</span>
</button>
</div>
</div>
</BaseLayout>

0 comments on commit 503f2ca

Please sign in to comment.