feat: add abstract SVG logo

This commit is contained in:
Dustin Byrne
2026-03-25 23:11:28 -04:00
parent c82f7f73cd
commit 4da7fb839c

View File

@@ -0,0 +1,18 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128" fill="none">
<!-- Abstract kanban columns flowing into each other -->
<rect x="12" y="32" width="18" height="64" rx="9" fill="#d29922" opacity="0.9"/>
<rect x="38" y="24" width="18" height="80" rx="9" fill="#58a6ff" opacity="0.9"/>
<rect x="64" y="16" width="18" height="96" rx="9" fill="#bc8cff" opacity="0.9"/>
<rect x="90" y="28" width="18" height="72" rx="9" fill="#3fb950" opacity="0.9"/>
<!-- Connecting flow lines -->
<path d="M30 64 Q34 64 38 56" stroke="#e6edf3" stroke-width="2" stroke-linecap="round" opacity="0.4"/>
<path d="M56 52 Q60 52 64 44" stroke="#e6edf3" stroke-width="2" stroke-linecap="round" opacity="0.4"/>
<path d="M82 48 Q86 48 90 56" stroke="#e6edf3" stroke-width="2" stroke-linecap="round" opacity="0.4"/>
<!-- Active dots representing tasks moving through -->
<circle cx="21" cy="52" r="4" fill="#0d1117" opacity="0.6"/>
<circle cx="47" cy="40" r="4" fill="#0d1117" opacity="0.6"/>
<circle cx="73" cy="36" r="4" fill="#0d1117" opacity="0.6"/>
<circle cx="99" cy="48" r="4" fill="#0d1117" opacity="0.6"/>
</svg>

After

Width:  |  Height:  |  Size: 1.1 KiB