2023-07-24 18:35:05 +00:00
|
|
|
import Image from 'react-bootstrap/Image'
|
2023-07-23 15:08:43 +00:00
|
|
|
import { StaticLayout } from '../components/layout'
|
2023-07-28 15:57:12 +00:00
|
|
|
import styles from '../styles/error.module.css'
|
2023-05-31 22:28:33 +00:00
|
|
|
|
|
|
|
export default function offline () {
|
|
|
|
return (
|
2023-07-23 15:08:43 +00:00
|
|
|
<StaticLayout>
|
2023-07-28 15:57:12 +00:00
|
|
|
<Image width='499' height='293' className='rounded-1 shadow-sm' src={`${process.env.NEXT_PUBLIC_ASSET_PREFIX}/waiting.gif`} fluid />
|
|
|
|
<h1 className={styles.status}><span>Offline</span></h1>
|
2023-07-23 15:08:43 +00:00
|
|
|
</StaticLayout>
|
2023-05-31 22:28:33 +00:00
|
|
|
)
|
|
|
|
}
|