Merge pull request #159 from multica-ai/refactor/login-ui-consistency

refactor(ui): unify login page styling across web and desktop
This commit is contained in:
Naiyuan Qing 2026-02-13 14:57:16 +08:00 committed by GitHub
commit 7578946990
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 8 additions and 12 deletions

View file

@ -33,15 +33,14 @@ export default function LoginPage() {
<div className="flex h-screen flex-col items-center justify-center bg-background p-8 animate-in fade-in duration-300">
<div className="w-full max-w-sm flex flex-col items-center text-center space-y-6">
{/* Brand */}
<div className="flex items-center gap-2.5">
<MulticaIcon animate className="size-5 text-muted-foreground/70" />
<h1 className="text-2xl tracking-wide font-brand">Multica</h1>
<div className="flex items-center gap-2">
<MulticaIcon bordered animate size="md" />
<h1 className="text-lg tracking-wide font-brand">Multica</h1>
</div>
{/* Tagline */}
<p className="text-sm text-muted-foreground leading-relaxed">
An AI assistant that gets things done pulling data, running analysis,
and taking action. Talk to it like a team member.
An AI assistant that gets things done.
</p>
{/* Sign In */}

View file

@ -202,14 +202,11 @@ export function LoginForm() {
<div className="flex flex-col items-center text-center space-y-4">
<div className="flex items-center gap-2">
<MulticaIcon bordered noSpin size="md" />
<span className="text-base font-brand">Multica</span>
</div>
<div>
<h1 className="text-2xl font-semibold tracking-tight">Sign in</h1>
<p className="mt-1.5 text-sm text-muted-foreground">
Enter your email to continue
</p>
<h1 className="text-lg font-semibold tracking-tight">Sign In</h1>
</div>
<p className="text-sm text-muted-foreground">
Enter your email to continue
</p>
</div>
{/* Error message */}