authorizer/dashboard/src/pages/Home.tsx

19 lines
421 B
TypeScript
Raw Normal View History

2022-01-19 17:13:07 +00:00
import { Text } from '@chakra-ui/react';
2022-01-19 16:50:25 +00:00
import React from 'react';
2022-01-19 16:50:25 +00:00
export default function Home() {
return (
2022-01-19 17:13:07 +00:00
<>
<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 16:50:25 +00:00
);
}