different 400/500 image component
This commit is contained in:
parent
f9016d13ee
commit
cefd6793f8
|
@ -1,11 +1,11 @@
|
|||
import Image from 'next/image'
|
||||
import { Image } from 'react-bootstrap'
|
||||
import LayoutCenter from '../components/layout-center'
|
||||
import styles from '../styles/404.module.css'
|
||||
|
||||
export default function fourZeroFour () {
|
||||
return (
|
||||
<LayoutCenter>
|
||||
<Image width='500' height='376' src='/maze.gif' />
|
||||
<Image width='500' height='376' src='/maze.gif' fluid />
|
||||
<h1 className={styles.fourZeroFour}><span>404</span><span className={styles.notFound}>page not found</span></h1>
|
||||
</LayoutCenter>
|
||||
)
|
||||
|
|
|
@ -1,11 +1,11 @@
|
|||
import Image from 'next/image'
|
||||
import { Image } from 'react-bootstrap'
|
||||
import LayoutCenter from '../components/layout-center'
|
||||
import styles from '../styles/404.module.css'
|
||||
|
||||
export default function fourZeroFour () {
|
||||
return (
|
||||
<LayoutCenter>
|
||||
<Image width='500' height='375' src='/falling.gif' />
|
||||
<Image width='500' height='375' src='/falling.gif' fluid />
|
||||
<h1 className={styles.fourZeroFour}><span>500</span><span className={styles.notFound}>server error</span></h1>
|
||||
</LayoutCenter>
|
||||
)
|
||||
|
|
Loading…
Reference in New Issue