2023-07-24 18:35:05 +00:00
|
|
|
import Image from 'react-bootstrap/Image'
|
2023-07-23 15:08:43 +00:00
|
|
|
import { StaticLayout } from '../components/layout'
|
2022-01-11 19:38:15 +00:00
|
|
|
import styles from '../styles/404.module.css'
|
|
|
|
|
2023-07-23 15:08:43 +00:00
|
|
|
export default function fiveHundo () {
|
2022-01-11 19:38:15 +00:00
|
|
|
return (
|
2023-07-23 15:08:43 +00:00
|
|
|
<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>
|
2023-07-23 15:08:43 +00:00
|
|
|
</StaticLayout>
|
2022-01-11 19:38:15 +00:00
|
|
|
)
|
|
|
|
}
|