diff --git a/dashboard/src/components/Menu.tsx b/dashboard/src/components/Menu.tsx index a7e2314..342e2c2 100644 --- a/dashboard/src/components/Menu.tsx +++ b/dashboard/src/components/Menu.tsx @@ -40,9 +40,9 @@ interface LinkItemProps { route: string; } const LinkItems: Array = [ - { name: 'Home', icon: FiHome, route: '/' }, + // { name: 'Home', icon: FiHome, route: '/' }, + { name: 'Environment Variables', icon: FiSettings, route: '/' }, { name: 'Users', icon: FiUsers, route: '/users' }, - { name: 'Environment Variables', icon: FiSettings, route: '/environment' }, ]; interface SidebarProps extends BoxProps { diff --git a/dashboard/src/pages/Auth.tsx b/dashboard/src/pages/Auth.tsx index 36b8b75..be11ab8 100644 --- a/dashboard/src/pages/Auth.tsx +++ b/dashboard/src/pages/Auth.tsx @@ -73,17 +73,25 @@ export default function Auth() { fontWeight="bold" mb="2" > - Hi there 👋
+ Hello Admin 👋
- Welcome to Authorizer Administrative Dashboard + Welcome to Admin Dashboard
- {/* - {isLogin ? 'Enter' : 'Configure'} Admin Secret - */} + Username + + + + Password ) : ( - Note: You can also configure admin secret by setting{' '} - ADMIN_SECRET environment variable. For more - information, please refer to the{' '} - documentation. + Note: Configure the password to start using your dashboard. )} diff --git a/dashboard/src/routes/index.tsx b/dashboard/src/routes/index.tsx index 2823b4a..30cec3a 100644 --- a/dashboard/src/routes/index.tsx +++ b/dashboard/src/routes/index.tsx @@ -23,7 +23,7 @@ export const AppRoutes = () => { } > - } /> + } /> } /> } /> } />