d237861ff5
* Use module path aliases * fix broken refactor * path mapping for svgs, style, and remaining places (bonus: lose babel dep) --------- Co-authored-by: keyan <keyan.kousha+huumn@gmail.com>
13 lines
435 B
JavaScript
13 lines
435 B
JavaScript
import Image from 'react-bootstrap/Image'
|
|
import { StaticLayout } from '@/components/layout'
|
|
import styles from '@/styles/error.module.css'
|
|
|
|
export default function offline () {
|
|
return (
|
|
<StaticLayout>
|
|
<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>
|
|
</StaticLayout>
|
|
)
|
|
}
|