Redesign the auth background and drop the icon badge.

The login/register backdrop (fluffy white cloud blobs + sun glow) read
as cheap. Replace it with a calmer, more premium take that stays in the
landing's blue/glass language: a deep brand gradient, a faint
infrastructure grid masked toward the edges, soft brand-blue glows and a
vignette. Remove the icon chip above the title on both pages.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
keyhan
2026-06-13 13:13:23 +03:30
parent 12996b657b
commit 23386b73de
3 changed files with 20 additions and 29 deletions
+1 -2
View File
@@ -3,7 +3,7 @@
import { useState } from 'react';
import { useAuthStore } from '@/lib/store';
import { notify } from '@/lib/notify';
import { LogIn, ArrowLeft } from 'lucide-react';
import { ArrowLeft } from 'lucide-react';
import { AuthShell } from '@/components/auth/AuthShell';
import { AuthField } from '@/components/auth/AuthField';
import { useT } from '@/i18n/I18nProvider';
@@ -33,7 +33,6 @@ export default function LoginPage() {
return (
<AuthShell
icon={<LogIn className="h-7 w-7" />}
title={tl.title}
subtitle={tl.subtitle}
altPrompt={tl.altPrompt}
+1 -2
View File
@@ -3,7 +3,7 @@
import { useState } from 'react';
import { useAuthStore } from '@/lib/store';
import { notify } from '@/lib/notify';
import { UserPlus, ArrowLeft } from 'lucide-react';
import { ArrowLeft } from 'lucide-react';
import { AuthShell } from '@/components/auth/AuthShell';
import { AuthField } from '@/components/auth/AuthField';
import { useT } from '@/i18n/I18nProvider';
@@ -32,7 +32,6 @@ export default function RegisterPage() {
return (
<AuthShell
icon={<UserPlus className="h-7 w-7" />}
title={tr.title}
subtitle={tr.subtitle}
altPrompt={tr.altPrompt}