mirror of
https://github.com/mikkelsvartveit/astro-personal-website.git
synced 2025-12-22 11:12:38 +00:00
Update 404 page
This commit is contained in:
parent
bf578e4d80
commit
b1721e7f41
2 changed files with 11 additions and 4 deletions
BIN
src/assets/images/404.jpeg
Normal file
BIN
src/assets/images/404.jpeg
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 299 KiB |
|
|
@ -1,16 +1,23 @@
|
|||
---
|
||||
import Paragraph from "../components/Paragraph.astro";
|
||||
import { Image } from "astro:assets";
|
||||
import BaseLayout from "../layouts/BaseLayout.astro";
|
||||
import NotFoundImage from "../assets/images/404.jpeg";
|
||||
---
|
||||
|
||||
<BaseLayout title="Mikkel Svartveit">
|
||||
<section class="mx-auto max-w-4xl px-3 pb-8 pt-12 sm:px-6">
|
||||
<h1
|
||||
class="mb-8 text-center font-serif text-3xl font-light tracking-wide text-gray-600 sm:text-4xl"
|
||||
class="mb-8 text-center text-3xl font-serif font-light tracking-wide text-gray-600 sm:text-4xl"
|
||||
>
|
||||
404 Not Found
|
||||
PAgE nOT fOuNd
|
||||
</h1>
|
||||
|
||||
<Paragraph class="text-center">That's an error.</Paragraph>
|
||||
<Image
|
||||
src={NotFoundImage}
|
||||
alt="404 Not Found"
|
||||
width={800}
|
||||
quality="mid"
|
||||
class="mx-auto w-80 max-w-full rounded-lg shadow-xl"
|
||||
/>
|
||||
</section>
|
||||
</BaseLayout>
|
||||
|
|
|
|||
Loading…
Reference in a new issue