mirror of
https://github.com/jorgev259/soc_site-astro.git
synced 2025-06-29 07:57:41 +00:00
Add static error pages
This commit is contained in:
parent
b91335a999
commit
32ddb3324b
7 changed files with 52 additions and 0 deletions
15
src/pages/500.astro
Normal file
15
src/pages/500.astro
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
---
|
||||
export const prerender = true
|
||||
import { Image } from 'astro:assets'
|
||||
|
||||
import BaseLayout from '../layouts/base.astro'
|
||||
|
||||
import GuraGif from '../img/assets/doggo-thumbs-up.gif'
|
||||
---
|
||||
|
||||
<BaseLayout>
|
||||
<div class='flex flex-1 flex-col bg-soc-green-dark py-6'>
|
||||
<div class='text-md` text-center'>Something went wrong.... yubi yubi</div>
|
||||
<Image src={GuraGif} alt='Gawr Gura roomba' class='size-80 mx-auto mt-4' />
|
||||
</div>
|
||||
</BaseLayout>
|
||||
Loading…
Add table
Add a link
Reference in a new issue