Skip to content

Commit 8094f0e

Browse files
Fix: Reduce logo spacing and make it clickable
Reduced the space between the logo and "RefSpring" text in the header and landing page. Made the logo clickable, linking it to the homepage.
1 parent 3584fa8 commit 8094f0e

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

src/pages/LandingPage.tsx

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
21
import { Button } from "@/components/ui/button";
32
import { ArrowRight, Zap, Users, BarChart3, Shield, CheckCircle, Star, TrendingUp, DollarSign, Clock, Globe, Award } from "lucide-react";
43
import { useEffect, useState } from "react";
@@ -121,10 +120,10 @@ const LandingPage = () => {
121120
<header className="fixed top-0 w-full border-b border-slate-200/80 bg-white/90 backdrop-blur-xl z-50 transition-all">
122121
<div className="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
123122
<div className="flex justify-between items-center h-16">
124-
<div className="flex items-center gap-3 animate-fade-in">
123+
<a href="/" className="flex items-center gap-2 animate-fade-in hover:opacity-80 transition-opacity">
125124
<RefSpringLogo width="32" height="32" />
126125
<div className="font-bold text-2xl text-slate-900">RefSpring</div>
127-
</div>
126+
</a>
128127
<nav className="hidden md:flex space-x-8" role="navigation" aria-label="Navigation principale">
129128
<a href="#features" className="text-slate-600 hover:text-slate-900 font-medium transition-all hover:scale-105">
130129
Fonctionnalités

0 commit comments

Comments
 (0)