2023-07-24 13:35:05 -05:00
|
|
|
import Image from 'react-bootstrap/Image'
|
2023-07-23 10:08:43 -05:00
|
|
|
import { StaticLayout } from '../components/layout'
|
2023-07-28 10:57:12 -05:00
|
|
|
import styles from '../styles/error.module.css'
|
2023-06-01 00:28:33 +02:00
|
|
|
|
|
|
|
export default function offline () {
|
|
|
|
return (
|
2023-07-23 10:08:43 -05:00
|
|
|
<StaticLayout>
|
2023-07-28 10:57:12 -05: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 10:08:43 -05:00
|
|
|
</StaticLayout>
|
2023-06-01 00:28:33 +02:00
|
|
|
)
|
|
|
|
}
|