dontbechad/static/images/logo.svg
Chad 32264deb5a Initial commit: Complete Hugo site with interactive story timeline
- Hugo site configured and working
- Story page with interactive collapsible timeline
- CSS styling for journey/timeline layout
- JavaScript for dynamic markdown-to-timeline conversion
- Theme with responsive design
- Content structure for Bitcoin education site

Features:
- Collapsible year sections with animations
- Quick jump navigation between years
- Mobile responsive design
- Interactive timeline functionality
2026-01-18 16:23:55 -06:00

24 lines
No EOL
1.1 KiB
XML

<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 50" class="logo-svg">
<defs>
<linearGradient id="btc-gradient" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" style="stop-color:#FF6B35;stop-opacity:1" />
<stop offset="100%" style="stop-color:#FF8F65;stop-opacity:1" />
</linearGradient>
<filter id="glow">
<feGaussianBlur stdDeviation="2" result="coloredBlur"/>
<feMerge>
<feMergeNode in="coloredBlur"/>
<feMergeNode in="SourceGraphic"/>
</feMerge>
</filter>
</defs>
<!-- Circle around Bitcoin symbol -->
<circle cx="25" cy="25" r="20" fill="none" stroke="url(#btc-gradient)" stroke-width="2.5" filter="url(#glow)"/>
<!-- Bitcoin symbol text -->
<text x="25" y="35" font-family="Arial, sans-serif" font-size="28" font-weight="bold" fill="url(#btc-gradient)" text-anchor="middle" filter="url(#glow)"></text>
<!-- "DON'T ₿E CHAD" text -->
<text x="55" y="30" font-family="'Courier New', monospace" font-size="16" font-weight="bold" fill="url(#btc-gradient)">DON'T ₿E CHAD</text>
</svg>