import { Box, Button, Flex, H1, Text } from '@traefiklabs/faency' import { useNavigate } from 'react-router-dom' import Page from 'layout/Page' export const NotFound = () => { const navigate = useNavigate() return (

404

I'm sorry, nothing around here...
) }