-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feat: 404 page * refactor: add layout * fix: leftover white space * chore: format
- Loading branch information
1 parent
d613e59
commit 2b73da5
Showing
1 changed file
with
43 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,43 @@ | ||
--- | ||
import Layout from "../layouts/Layout.astro"; | ||
--- | ||
|
||
<Layout title="404" description="404"> | ||
<main> | ||
<div | ||
class="flex min-h-screen w-screen flex-col items-center justify-center bg-primary px-[12%] md:px-0" | ||
> | ||
<div | ||
class="stroke-width-2 flex flex-row justify-center text-9xl font-medium text-primary md:text-[16rem]" | ||
> | ||
<div class="stroke-white">4</div> | ||
<div class="stroke-yellow">0</div> | ||
<div class="stroke-white">4</div> | ||
</div> | ||
|
||
<div class="mt-6 text-center text-2xl text-[#807F7E] md:text-5xl"> | ||
Page that you are looking not found | ||
</div> | ||
|
||
<a href="/"> | ||
<div | ||
class="mt-10 cursor-pointer rounded border-[1px] border-white px-4 py-2 text-xl font-medium text-white md:px-8 md:py-4 md:text-4xl" | ||
> | ||
Homepage | ||
</div> | ||
</a> | ||
</div> | ||
</main> | ||
</Layout> | ||
|
||
<style> | ||
.stroke-width-2 { | ||
-webkit-text-stroke-width: 2px; | ||
} | ||
.stroke-white { | ||
-webkit-text-stroke-color: var(--white, #fff); | ||
} | ||
.stroke-yellow { | ||
-webkit-text-stroke-color: var(--Yellow, #fdc648); | ||
} | ||
</style> |