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'; import React from 'react';
export default function Environment() { 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'; import React from 'react';
export default function Home() { export default function Home() {
return ( return (
<Box> <>
Hi there 👋 <br /> <Text fontSize="2xl" fontWeight="bold">
Welcome to Authorizer administrative dashboard! Hi there 👋 <br />
</Box> </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>
</>
); );
} }