2022-01-13 18:16:00 +00:00
|
|
|
import { Image } from 'react-bootstrap'
|
2023-05-01 20:58:30 +00:00
|
|
|
import LayoutStatic from '../components/layout-static'
|
2022-01-11 19:38:15 +00:00
|
|
|
import styles from '../styles/404.module.css'
|
|
|
|
|
|
|
|
export default function fourZeroFour () {
|
|
|
|
return (
|
2023-05-01 20:58:30 +00:00
|
|
|
<LayoutStatic>
|
2022-01-13 18:16:00 +00:00
|
|
|
<Image width='500' height='375' src='/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-05-01 20:58:30 +00:00
|
|
|
</LayoutStatic>
|
2022-01-11 19:38:15 +00:00
|
|
|
)
|
|
|
|
}
|