2022-01-19 22:43:07 +05:30
|
|
|
import { Text } from '@chakra-ui/react';
|
2022-01-19 22:20:25 +05:30
|
|
|
import React from 'react';
|
2022-01-15 21:15:46 +05:30
|
|
|
|
2022-01-19 22:20:25 +05:30
|
|
|
export default function Home() {
|
|
|
|
return (
|
2022-01-19 22:43:07 +05:30
|
|
|
<>
|
|
|
|
<Text fontSize="2xl" fontWeight="bold">
|
|
|
|
Hi there 👋 <br />
|
|
|
|
</Text>
|
|
|
|
|
|
|
|
<Text fontSize="xl" color="gray.700">
|
|
|
|
Welcome to Authorizer Administrative Dashboard! <br />
|
|
|
|
Please use this dashboard to configure your environment variables or
|
|
|
|
have look at your users
|
|
|
|
</Text>
|
|
|
|
</>
|
2022-01-19 22:20:25 +05:30
|
|
|
);
|
2022-01-15 21:15:46 +05:30
|
|
|
}
|