stacker.news/pages/404.js

13 lines
422 B
JavaScript
Raw Normal View History

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='376' src='/maze.gif' fluid />
2022-01-11 19:38:15 +00:00
<h1 className={styles.fourZeroFour}><span>404</span><span className={styles.notFound}>page not found</span></h1>
2023-05-01 20:58:30 +00:00
</LayoutStatic>
2022-01-11 19:38:15 +00:00
)
}