-
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.
- Loading branch information
1 parent
29a3112
commit 758f9fc
Showing
2 changed files
with
47 additions
and
0 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,47 @@ | ||
--- | ||
import DividerLayout from '@/layouts/DividerLayout.astro'; | ||
import imgGeorge from '@/assets/img-george-is-not-home.png'; | ||
import { Image } from 'astro:assets'; | ||
const title = '404 Page Not Found'; | ||
const metadata = { | ||
title: title, | ||
description: 'Where could it be?', | ||
}; | ||
--- | ||
|
||
<DividerLayout metadata={metadata}> | ||
|
||
<h1 | ||
class="fs-6 lead text-end text-body-emphasis" | ||
slot="header"> | ||
{title} | ||
</h1> | ||
|
||
<Fragment slot="main"> | ||
|
||
<div> | ||
|
||
<p class="h2"> | ||
Believe it or not, this page is not home. | ||
</p> | ||
|
||
<Image | ||
src={imgGeorge} | ||
alt="Screenshot of George sitting next to his phone eating popcorn in Season 8 Episode 15 of Seinfeld" | ||
class:list="img-fluid rounded shadow-lg my-2" | ||
width="2000" | ||
height="1125" | ||
loading="eager" | ||
/> | ||
|
||
<p class="h2 text-end"> | ||
Where could it be? | ||
</p> | ||
|
||
</div> | ||
|
||
</Fragment> | ||
|
||
</DividerLayout> |