import { Box } from '@chakra-ui/react';
import React from 'react';
export default function Home() {
return (
<Box>
Hi there 👋 <br />
Welcome to Authorizer administrative dashboard!
</Box>
);
}