feat: update app logo to CRAZE SCAN

This commit is contained in:
Christian Vidal Wolf
2026-03-29 14:38:57 +02:00
parent 1a6243504e
commit dd72b927c7
3 changed files with 12 additions and 10 deletions
+9 -7
View File
@@ -59,13 +59,15 @@ export function LoginPage({ onLogin }: LoginPageProps) {
return (
<div className="min-h-screen bg-slate-900 flex items-center justify-center p-4">
<div className="w-full max-w-sm">
<div className="flex flex-col items-center mb-8">
<div className="bg-blue-600 p-3 rounded-xl mb-4">
<Database className="w-8 h-8 text-white" />
</div>
<h1 className="text-2xl font-bold text-white">CRAZE Data Quality</h1>
<p className="text-slate-400 text-sm mt-1">
{isSignUp ? 'Create your CRAZE account' : 'Sign in with your CRAZE account'}
<div className="flex flex-col items-center mb-10">
<img
src="/logo.png"
alt="Craze Scan"
className="h-28 w-auto mb-6 drop-shadow-[0_0_15px_rgba(30,58,138,0.5)]"
/>
<h1 className="text-3xl font-extrabold text-white tracking-tight">CRAZE SCAN</h1>
<p className="text-slate-400 text-sm mt-3 font-medium uppercase tracking-widest opacity-80">
{isSignUp ? 'Create your account' : 'Product Data Intelligence'}
</p>
</div>