2
0
Files
bot/apps/viewer/layouts/NotFoundPage.tsx
Baptiste Arnaud d369b4d941 🦴 Add viewer backbone
2021-12-24 06:39:33 +01:00

17 lines
372 B
TypeScript

import React from 'react'
export const NotFoundPage = () => (
<div
style={{
height: '100vh',
display: 'flex',
justifyContent: 'center',
alignItems: 'center',
flexDirection: 'column',
}}
>
<h1 style={{ fontWeight: 'bold', fontSize: '30px' }}>404</h1>
<h2>The bot you&apos;re looking for doesn&apos;t exist</h2>
</div>
)