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