From 39d4e5b8cf559eb1dc9b2b70fd261f2f7b00d7fd Mon Sep 17 00:00:00 2001 From: Johan Date: Fri, 13 Mar 2026 00:46:52 +0100 Subject: [PATCH] Initial React project --- src/presentation/auth/pages/AuthPage.tsx | 5 +++-- src/presentation/auth/pages/auth.css | 10 +++------- .../dashboard/components/DashboardSidebar.tsx | 4 +--- src/presentation/shared/components/SiteNavbar.tsx | 4 +--- 4 files changed, 8 insertions(+), 15 deletions(-) diff --git a/src/presentation/auth/pages/AuthPage.tsx b/src/presentation/auth/pages/AuthPage.tsx index 1eb87dc..9a72656 100644 --- a/src/presentation/auth/pages/AuthPage.tsx +++ b/src/presentation/auth/pages/AuthPage.tsx @@ -2,6 +2,7 @@ import { ForgotPasswordView } from '../components/ForgotPasswordView'; import { LoginView } from '../components/LoginView'; import { RegisterView } from '../components/RegisterView'; import { useAuthPage } from '../hooks/useAuthPage'; +import appIcon from '../../../assets/appicon.png'; import './auth.css'; interface AuthPageProps { @@ -46,8 +47,8 @@ export function AuthPage({ onAuthenticated }: AuthPageProps) {
-
A
- ARBEJD + Arbejd logo + Arbejd.com
diff --git a/src/presentation/auth/pages/auth.css b/src/presentation/auth/pages/auth.css index e05f06b..bea862c 100644 --- a/src/presentation/auth/pages/auth.css +++ b/src/presentation/auth/pages/auth.css @@ -63,13 +63,9 @@ .auth-logo-dot { width: 32px; height: 32px; - border-radius: 999px; - display: grid; - place-items: center; - color: #fff; - font-weight: 700; - background: linear-gradient(135deg, #0f766e, #06b6d4); - box-shadow: 0 12px 22px rgba(13, 148, 136, 0.3); + border-radius: 8px; + object-fit: cover; + box-shadow: 0 4px 15px rgba(49, 103, 201, 0.2); } .auth-logo-text { diff --git a/src/presentation/dashboard/components/DashboardSidebar.tsx b/src/presentation/dashboard/components/DashboardSidebar.tsx index 4bc103d..b674c81 100644 --- a/src/presentation/dashboard/components/DashboardSidebar.tsx +++ b/src/presentation/dashboard/components/DashboardSidebar.tsx @@ -87,9 +87,7 @@ export function DashboardSidebar({ active = 'dashboard', onNavigate }: Dashboard