Skip to content

Commit 75bcbd7

Browse files
Fix: Show logo on dashboard
Ensured the logo and "RefSpring" text are displayed in the dashboard header.
1 parent 6d321ca commit 75bcbd7

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

src/components/AuthForm.tsx

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ import { useAuth } from '@/hooks/useAuth';
99
import { useToast } from '@/hooks/use-toast';
1010
import { Chrome, Mail, Lock, ArrowLeft } from 'lucide-react';
1111
import { useTranslation } from 'react-i18next';
12+
import { RefSpringLogo } from '@/components/RefSpringLogo';
1213

1314
export const AuthForm = () => {
1415
const [isLogin, setIsLogin] = useState(true);
@@ -86,6 +87,16 @@ export const AuthForm = () => {
8687

8788
<Card className="w-full max-w-md bg-white/80 backdrop-blur-sm border-slate-200/50 shadow-xl">
8889
<CardHeader className="text-center pb-6">
90+
{/* Logo RefSpring */}
91+
<div className="flex items-center justify-center gap-3 mb-4">
92+
<RefSpringLogo width="40" height="40" />
93+
<div>
94+
<h1 className="text-3xl font-bold bg-gradient-to-r from-blue-600 to-purple-600 bg-clip-text text-transparent">
95+
RefSpring
96+
</h1>
97+
</div>
98+
</div>
99+
89100
<CardTitle className="text-2xl font-bold bg-gradient-to-r from-blue-600 to-purple-600 bg-clip-text text-transparent">
90101
{t('auth.title')}
91102
</CardTitle>

0 commit comments

Comments
 (0)