stacker.news/pages/500.js

13 lines
460 B
JavaScript
Raw Normal View History

2023-07-24 18:35:05 +00:00
import Image from 'react-bootstrap/Image'
import { StaticLayout } from '../components/layout'
2022-01-11 19:38:15 +00:00
import styles from '../styles/404.module.css'
export default function fiveHundo () {
2022-01-11 19:38:15 +00:00
return (
<StaticLayout>
<Image width='500' height='375' src={`${process.env.NEXT_PUBLIC_ASSET_PREFIX}/falling.gif`} fluid />
2022-01-11 19:38:15 +00:00
<h1 className={styles.fourZeroFour}><span>500</span><span className={styles.notFound}>server error</span></h1>
</StaticLayout>
2022-01-11 19:38:15 +00:00
)
}