13 lines
422 B
JavaScript
Raw Normal View History

2022-01-13 12:16:00 -06:00
import { Image } from 'react-bootstrap'
2023-05-01 15:58:30 -05:00
import LayoutStatic from '../components/layout-static'
2022-01-11 13:38:15 -06:00
import styles from '../styles/404.module.css'
export default function fourZeroFour () {
return (
2023-05-01 15:58:30 -05:00
<LayoutStatic>
2022-01-13 12:16:00 -06:00
<Image width='500' height='376' src='/maze.gif' fluid />
2022-01-11 13:38:15 -06:00
<h1 className={styles.fourZeroFour}><span>404</span><span className={styles.notFound}>page not found</span></h1>
2023-05-01 15:58:30 -05:00
</LayoutStatic>
2022-01-11 13:38:15 -06:00
)
}