13 lines
419 B
JavaScript
Raw Normal View History

2022-01-13 12:16:00 -06:00
import { Image } from 'react-bootstrap'
2022-05-18 15:55:06 -05:00
import LayoutError from '../components/layout-error'
2022-01-11 13:38:15 -06:00
import styles from '../styles/404.module.css'
export default function fourZeroFour () {
return (
2022-05-18 15:55:06 -05:00
<LayoutError>
2022-01-13 12:16:00 -06:00
<Image width='500' height='375' src='/falling.gif' fluid />
2022-01-11 13:38:15 -06:00
<h1 className={styles.fourZeroFour}><span>500</span><span className={styles.notFound}>server error</span></h1>
2022-05-18 15:55:06 -05:00
</LayoutError>
2022-01-11 13:38:15 -06:00
)
}