Skip to content

Commit e5ecd22

Browse files
barckcodeclaude
andcommitted
fix: replace footer logo with new brand SVG and increase logo size
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent f4ff707 commit e5ecd22

File tree

2 files changed

+25
-18
lines changed

2 files changed

+25
-18
lines changed

web/src/components/Footer.astro

Lines changed: 24 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -13,23 +13,30 @@ const base = getBaseUrl(lang);
1313
<div class="flex flex-col md:flex-row items-center md:items-start justify-between gap-8">
1414
<!-- Logo + tagline -->
1515
<div class="flex flex-col items-center md:items-start gap-3 max-w-xs">
16-
<div class="flex items-center gap-2">
17-
<div class="w-8 h-8 rounded-lg flex items-center justify-center" style="background: linear-gradient(135deg, #3b82f6, #8b5cf6);">
18-
<svg width="18" height="18" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
19-
<circle cx="5" cy="9" r="3" fill="white" opacity="0.9"/>
20-
<circle cx="19" cy="9" r="3" fill="white" opacity="0.9"/>
21-
<circle cx="12" cy="5" r="3" fill="white"/>
22-
<path d="M12 8v4M8 11l4 2 4-2M8 13l4 2 4-2" stroke="white" stroke-width="1.5" stroke-linecap="round"/>
23-
<circle cx="5" cy="18" r="2.5" fill="white" opacity="0.7"/>
24-
<circle cx="12" cy="18" r="2.5" fill="white" opacity="0.7"/>
25-
<circle cx="19" cy="18" r="2.5" fill="white" opacity="0.7"/>
26-
<line x1="5" y1="12" x2="5" y2="15.5" stroke="white" stroke-width="1.5" opacity="0.7"/>
27-
<line x1="12" y1="13" x2="12" y2="15.5" stroke="white" stroke-width="1.5" opacity="0.7"/>
28-
<line x1="19" y1="12" x2="19" y2="15.5" stroke="white" stroke-width="1.5" opacity="0.7"/>
29-
</svg>
30-
</div>
31-
<span class="text-white font-bold text-lg tracking-tight">AgentCrew</span>
32-
</div>
16+
<svg class="h-10 w-auto" viewBox="0 0 280 56" fill="none" xmlns="http://www.w3.org/2000/svg" aria-hidden="true">
17+
<defs>
18+
<linearGradient id="footer-bg" x1="0%" y1="0%" x2="100%" y2="100%">
19+
<stop offset="0%" stop-color="#3b82f6"/>
20+
<stop offset="100%" stop-color="#8b5cf6"/>
21+
</linearGradient>
22+
</defs>
23+
<rect width="44" height="44" y="6" rx="9" fill="url(#footer-bg)"/>
24+
<line x1="19" y1="27" x2="13" y2="19" stroke="white" stroke-width="1.1" opacity="0.5" stroke-linecap="round"/>
25+
<line x1="19" y1="27" x2="33" y2="20" stroke="white" stroke-width="1.1" opacity="0.5" stroke-linecap="round"/>
26+
<line x1="19" y1="27" x2="12" y2="39" stroke="white" stroke-width="1.1" opacity="0.5" stroke-linecap="round"/>
27+
<line x1="19" y1="27" x2="34" y2="40" stroke="white" stroke-width="1.1" opacity="0.5" stroke-linecap="round"/>
28+
<line x1="13" y1="19" x2="33" y2="20" stroke="white" stroke-width="0.5" opacity="0.15" stroke-linecap="round"/>
29+
<line x1="12" y1="39" x2="34" y2="40" stroke="white" stroke-width="0.5" opacity="0.15" stroke-linecap="round"/>
30+
<circle cx="19" cy="27" r="7" fill="white" opacity="0.12"/>
31+
<circle cx="19" cy="27" r="5" fill="white" opacity="0.95"/>
32+
<circle cx="13" cy="19" r="3" fill="white" opacity="0.85"/>
33+
<circle cx="33" cy="20" r="3.3" fill="white" opacity="0.9"/>
34+
<circle cx="12" cy="39" r="2.8" fill="white" opacity="0.8"/>
35+
<circle cx="34" cy="40" r="3.1" fill="white" opacity="0.85"/>
36+
<circle cx="7" cy="30" r="1" fill="white" opacity="0.2"/>
37+
<circle cx="39" cy="31" r="1.1" fill="white" opacity="0.18"/>
38+
<text x="56" y="34" font-family="-apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif" font-size="22" font-weight="600" fill="white">AgentCrew</text>
39+
</svg>
3340
<p class="text-slate-400 text-sm text-center md:text-left leading-relaxed">
3441
{t('footer.tagline')}
3542
</p>

web/src/components/Navbar.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ const switchLabel = otherLang === 'es' ? 'ES' : 'EN';
1717
<div class="flex items-center justify-between h-16">
1818
<!-- Logo -->
1919
<a href={`${base}/`} class="flex items-center gap-2" aria-label="AgentCrew home">
20-
<svg class="h-8 w-auto" viewBox="0 0 280 56" fill="none" xmlns="http://www.w3.org/2000/svg" aria-hidden="true">
20+
<svg class="h-10 w-auto" viewBox="0 0 280 56" fill="none" xmlns="http://www.w3.org/2000/svg" aria-hidden="true">
2121
<defs>
2222
<linearGradient id="nav-bg" x1="0%" y1="0%" x2="100%" y2="100%">
2323
<stop offset="0%" stop-color="#3b82f6"/>

0 commit comments

Comments
 (0)