-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #796 from centrapay/404-page
404 Page
- Loading branch information
Showing
1 changed file
with
39 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |