Skip to content

Commit 1ec700d

Browse files
Sai Sridhar Tarraclaude
authored andcommitted
Fix: landing page navbar + footer logo — bigger (h-11) and clickable
- Navbar logo: h-8 → h-11, wrapped in Link href='/' - Footer logo: h-8 → h-11, wrapped in Link href='/' - Both now navigate to home on click Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent b7799dc commit 1ec700d

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

frontend/pages/index.tsx

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,9 @@ function Navbar() {
2626
<div className="mx-auto max-w-7xl px-4 sm:px-6 lg:px-8">
2727
<div className="flex h-16 items-center justify-between">
2828
<div className="flex items-center">
29-
<img src="/logo.svg" alt="Mailair" className="h-8 w-auto" />
29+
<Link href="/">
30+
<img src="/logo.svg" alt="Mailair" className="h-11 w-auto cursor-pointer" />
31+
</Link>
3032
</div>
3133
<div className="hidden md:flex items-center gap-8">
3234
<a href="#features" className="text-sm text-gray-600 hover:text-gray-900 transition-colors">Features</a>
@@ -542,7 +544,7 @@ function Footer() {
542544
<div className="grid grid-cols-2 md:grid-cols-5 gap-8">
543545
<div className="col-span-2">
544546
<div className="flex items-center mb-4">
545-
<img src="/logo-dark.svg" alt="Mailair" className="h-8 w-auto" />
547+
<Link href="/"><img src="/logo-dark.svg" alt="Mailair" className="h-11 w-auto cursor-pointer" /></Link>
546548
</div>
547549
<p className="text-sm text-gray-400 leading-relaxed max-w-xs">
548550
AI-powered email management for service businesses. Triage, prioritize, and respond — faster than ever.

0 commit comments

Comments
 (0)