soc_site-astro/src/pages/500.astro

17 lines
488 B
Text

---
export const prerender = true
import { Image } from 'astro:assets'
import BaseLayout from '../layouts/base.astro'
import DefaultSEO from 'components/DefaultSEO.astro'
import GuraGif from '../img/assets/doggo-thumbs-up.gif'
---
<DefaultSEO />
<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='' class='size-80 mx-auto mt-4' />
</div>
</BaseLayout>