fix(dashboard): update home page text

This commit is contained in:
Lakhan Samani 2022-01-19 22:43:07 +05:30
parent ddda237178
commit 3cb02dd62c
2 changed files with 13 additions and 6 deletions

View File

@ -1,4 +1,4 @@
import { Box } from '@chakra-ui/react';
import { Box, Flex } from '@chakra-ui/react';
import React from 'react';
export default function Environment() {

View File

@ -1,11 +1,18 @@
import { Box } from '@chakra-ui/react';
import { Text } from '@chakra-ui/react';
import React from 'react';
export default function Home() {
return (
<Box>
Hi there 👋 <br />
Welcome to Authorizer administrative dashboard!
</Box>
<>
<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>
</>
);
}