2
0
Files
bot/apps/viewer/layouts/NotFoundPage.tsx

17 lines
372 B
TypeScript
Raw Normal View History

2021-12-23 16:31:56 +01:00
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>
)