19 lines
421 B
TypeScript
19 lines
421 B
TypeScript
import { Text } from '@chakra-ui/react';
|
|
import React from 'react';
|
|
|
|
export default function Home() {
|
|
return (
|
|
<>
|
|
<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>
|
|
</>
|
|
);
|
|
}
|