improvement: logo and name svgs updated and replaced.

This commit is contained in:
2026-08-19 19:39:27 +03:30
parent 96f698be98
commit 29c639f5a1
55 changed files with 262 additions and 71 deletions

View File

@@ -10,7 +10,7 @@ import { zodResolver } from '@hookform/resolvers/zod';
import * as z from 'zod';
import { Lock, Mail, User } from 'lucide-react';
import { AuthPageShell } from '@/components/ui/auth/AuthPageShell';
import { BrandWordmark } from '@/components/ui/shared/BrandWordmark';
import { BrandLockup } from '@/components/ui/shared/BrandLockup';
import { Button } from '@/components/ui/shared/Button';
import { Input } from '@/components/ui/shared/Input';
import { OrganizationDetailsFields } from '@/components/ui/auth/OrganizationDetailsFields';
@@ -180,7 +180,7 @@ function AcceptOrganizationInviteContent() {
header={
<>
<Link href="/" className="flex justify-center">
<BrandWordmark className="text-2xl sm:text-3xl font-semibold text-text-primary" />
<BrandLockup className="text-2xl sm:text-3xl text-text-primary" />
</Link>
<h2 className="mt-4 sm:mt-6 text-center text-2xl sm:text-3xl font-semibold text-text-primary">
{t('acceptOrganizationTitle')}

View File

@@ -11,7 +11,7 @@ import { authApi } from '@/lib/api/auth';
import { getUserFacingError } from '@/components/shared/formatApiError';
import { useAuth } from '@/lib/hooks/useAuth';
import { AuthPageShell } from '@/components/ui/auth/AuthPageShell';
import { BrandWordmark } from '@/components/ui/shared/BrandWordmark';
import { BrandLockup } from '@/components/ui/shared/BrandLockup';
import { Button } from '@/components/ui/shared/Button';
import { Input } from '@/components/ui/shared/Input';
@@ -128,7 +128,7 @@ export default function ForgotPasswordPage() {
header={
<>
<Link href="/" className="flex justify-center">
<BrandWordmark className="text-2xl sm:text-3xl font-semibold text-text-primary" />
<BrandLockup className="text-2xl sm:text-3xl text-text-primary" />
</Link>
<h2 className="mt-4 sm:mt-6 text-center text-2xl sm:text-3xl font-semibold text-text-primary">
{t('forgotPasswordTitle')}

View File

@@ -12,7 +12,7 @@ import { getUserFacingError } from '@/components/shared/formatApiError';
import { useAuth } from '@/lib/hooks/useAuth';
import { getRememberedEmail } from '@/lib/auth/rememberMe';
import { AuthPageShell } from '@/components/ui/auth/AuthPageShell';
import { BrandWordmark } from '@/components/ui/shared/BrandWordmark';
import { BrandLockup } from '@/components/ui/shared/BrandLockup';
import { Button } from '@/components/ui/shared/Button';
import { Checkbox } from '@/components/ui/shared/Checkbox';
import { Input } from '@/components/ui/shared/Input';
@@ -92,7 +92,7 @@ function LoginPageContent() {
header={
<>
<Link href="/" className="flex justify-center">
<BrandWordmark className="text-2xl sm:text-3xl font-semibold text-text-primary" />
<BrandLockup className="text-2xl sm:text-3xl text-text-primary" />
</Link>
<h2 className="mt-4 sm:mt-6 text-center text-2xl sm:text-3xl font-semibold text-text-primary">
{t('signInTitle')}

View File

@@ -5,7 +5,7 @@ import { Link } from '@/i18n/navigation';
import { useAuth } from '@/lib/hooks/useAuth';
import { Button } from '@/components/ui/shared/Button';
import { TopBarControls } from '@/components/ui/shared/TopBarControls';
import { BrandWordmark } from '@/components/ui/shared/BrandWordmark';
import { BrandLockup } from '@/components/ui/shared/BrandLockup';
import { Building2, Beaker, Calendar, Shield, Clock, Users } from 'lucide-react';
export default function HomePage() {
@@ -18,7 +18,7 @@ export default function HomePage() {
<header className="border-b border-border/70 bg-background-secondary/65 backdrop-blur-sm fixed top-0 w-full z-10">
<div className="container mx-auto px-4 py-3 sm:py-4 flex flex-wrap items-center justify-between gap-x-4 gap-y-3">
<Link href="/" className="shrink-0">
<BrandWordmark className="text-xl sm:text-2xl font-semibold text-text-primary" />
<BrandLockup className="text-xl sm:text-2xl text-text-primary" />
</Link>
<div className="flex items-center gap-1.5 sm:gap-3 ml-auto shrink-0">

View File

@@ -11,7 +11,7 @@ import { getUserFacingError } from '@/components/shared/formatApiError';
import { useAuth } from '@/lib/hooks/useAuth';
import { useEnterAppWhenAuthenticated } from '@/lib/hooks/useEnterAppWhenAuthenticated';
import { AuthPageShell } from '@/components/ui/auth/AuthPageShell';
import { BrandWordmark } from '@/components/ui/shared/BrandWordmark';
import { BrandLockup } from '@/components/ui/shared/BrandLockup';
import { OrganizationDetailsFields } from '@/components/ui/auth/OrganizationDetailsFields';
import { RegistrationProgressSteps } from '@/components/ui/auth/RegistrationProgressSteps';
import { Button } from '@/components/ui/shared/Button';
@@ -137,7 +137,7 @@ export default function RegisterPage() {
header={
<>
<Link href="/" className="flex justify-center">
<BrandWordmark className="text-2xl sm:text-3xl font-semibold text-text-primary" />
<BrandLockup className="text-2xl sm:text-3xl text-text-primary" />
</Link>
<h2 className="mt-4 sm:mt-6 text-center text-2xl sm:text-3xl font-semibold text-text-primary">
{t('registerTitle')}

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 17 KiB