From 0b8ec1adb566897ac7bb3df366f1dd2337602b0e Mon Sep 17 00:00:00 2001 From: Andre Padez Date: Tue, 17 Feb 2026 17:02:12 +0000 Subject: [PATCH] refactored Authentication --- .../Authentication/LandingPage/Bootstrap.tsx | 5 +- .../Dashboard/Layout/AuthenticationLayout.tsx | 21 ++++ .../Screens/Dashboard/Layout/Background.tsx | 19 +++ .../Layout/DuckAvatar/DebugPanel.tsx | 43 +++++++ .../Layout/DuckAvatar/DuckAvatar.tsx | 118 ++++++++++++++++++ .../Dashboard/Layout/DuckAvatar/DuckModel.tsx | 68 ++++++++++ .../Dashboard/Layout/DuckAvatar/index.tsx | 1 + .../Screens/Dashboard/Layout/index.tsx | 1 + 8 files changed, 274 insertions(+), 2 deletions(-) create mode 100644 src/apps/officer-web/Screens/Dashboard/Layout/AuthenticationLayout.tsx create mode 100644 src/apps/officer-web/Screens/Dashboard/Layout/Background.tsx create mode 100644 src/apps/officer-web/Screens/Dashboard/Layout/DuckAvatar/DebugPanel.tsx create mode 100644 src/apps/officer-web/Screens/Dashboard/Layout/DuckAvatar/DuckAvatar.tsx create mode 100644 src/apps/officer-web/Screens/Dashboard/Layout/DuckAvatar/DuckModel.tsx create mode 100644 src/apps/officer-web/Screens/Dashboard/Layout/DuckAvatar/index.tsx create mode 100644 src/apps/officer-web/Screens/Dashboard/Layout/index.tsx diff --git a/src/apps/officer-web/Screens/Authentication/LandingPage/Bootstrap.tsx b/src/apps/officer-web/Screens/Authentication/LandingPage/Bootstrap.tsx index 4725c0e4..e568eea5 100644 --- a/src/apps/officer-web/Screens/Authentication/LandingPage/Bootstrap.tsx +++ b/src/apps/officer-web/Screens/Authentication/LandingPage/Bootstrap.tsx @@ -2,6 +2,7 @@ import { useState } from 'react'; import { toast } from 'sonner'; import { useClient } from 'hooks/useClient'; import { Button } from '@/components/ui/button'; +import { Input } from '@/components/ui/input'; import { Card } from '@/components/Card'; import { useForm } from 'hooks/useForm'; @@ -42,11 +43,11 @@ export function Bootstrap() {

Welcome, Admin

Enter your email to create your administrator account.

-