From 3cb02dd62c6e63b2692f57043624c264f703b854 Mon Sep 17 00:00:00 2001 From: Lakhan Samani Date: Wed, 19 Jan 2022 22:43:07 +0530 Subject: [PATCH] fix(dashboard): update home page text --- dashboard/src/pages/Environment.tsx | 2 +- dashboard/src/pages/Home.tsx | 17 ++++++++++++----- 2 files changed, 13 insertions(+), 6 deletions(-) diff --git a/dashboard/src/pages/Environment.tsx b/dashboard/src/pages/Environment.tsx index 8f4300e..a789dc8 100644 --- a/dashboard/src/pages/Environment.tsx +++ b/dashboard/src/pages/Environment.tsx @@ -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() { diff --git a/dashboard/src/pages/Home.tsx b/dashboard/src/pages/Home.tsx index f530244..b4be04d 100644 --- a/dashboard/src/pages/Home.tsx +++ b/dashboard/src/pages/Home.tsx @@ -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 ( - - Hi there 👋
- Welcome to Authorizer administrative dashboard! -
+ <> + + Hi there 👋
+
+ + + Welcome to Authorizer Administrative Dashboard!
+ Please use this dashboard to configure your environment variables or + have look at your users +
+ ); }