2
0
Files
bot/apps/viewer/layouts/NotFoundPage.tsx
2022-04-02 11:18:11 +02:00

15 lines
345 B
TypeScript

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>
)