16 lines
748 B
XML
16 lines
748 B
XML
<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg">
|
|
<defs>
|
|
<linearGradient id="logoGradient" x1="0%" y1="0%" x2="100%" y2="100%">
|
|
<stop offset="0%" style="stop-color:#0062ff;stop-opacity:1" />
|
|
<stop offset="100%" style="stop-color:#004dc7;stop-opacity:1" />
|
|
</linearGradient>
|
|
</defs>
|
|
<!-- Background Shape -->
|
|
<rect x="10" y="10" width="80" height="80" rx="20" fill="url(#logoGradient)" />
|
|
<!-- Stylized Z and Chart -->
|
|
<path d="M30 30 H70 L30 70 H70" fill="none" stroke="white" stroke-width="8" stroke-linecap="round" stroke-linejoin="round" />
|
|
<!-- Tech Node / Dot -->
|
|
<circle cx="70" cy="30" r="6" fill="#10b981" />
|
|
<circle cx="30" cy="70" r="6" fill="#10b981" />
|
|
</svg>
|