-
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 and footer always at bottom
- Loading branch information
1 parent
eeb02ab
commit 68a8c0e
Showing
3 changed files
with
26 additions
and
12 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
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,7 @@ | ||
--- | ||
import Layout from "../layouts/Layout.astro" | ||
--- | ||
|
||
<Layout title="Not found" description=""> | ||
<p>Whoops! Looks like that page doesn't exist!</p> | ||
</Layout> |
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 |
---|---|---|
|
@@ -11,6 +11,11 @@ | |
@apply text-neutral-700; | ||
} | ||
|
||
html, | ||
body { | ||
@apply h-full; | ||
} | ||
|
||
body { | ||
@apply grid; | ||
@apply bg-neutral-50; | ||
|