f9eace71e0
Moved icons, screenshots, SVGs, and sound files to new locations under 'branding' and 'ytsage/assets' directories for improved project organization.
18 lines
826 B
XML
18 lines
826 B
XML
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 700 160" role="img" aria-labelledby="title" fill="none">
|
|
<title id="title">YTSage Logo</title>
|
|
<defs>
|
|
<!-- Match the hero gradient: white to accent red (#dc2626) -->
|
|
<linearGradient id="ytGradient" x1="0%" y1="0%" x2="100%" y2="100%">
|
|
<stop offset="0%" stop-color="#ffffff" />
|
|
<stop offset="100%" stop-color="#dc2626" />
|
|
</linearGradient>
|
|
</defs>
|
|
<!-- Background transparent rectangle for easier clicking (optional) -->
|
|
<rect width="700" height="160" fill="transparent" />
|
|
<text x="50%" y="50%"
|
|
font-family="Inter,-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,sans-serif"
|
|
font-size="120" font-weight="900"
|
|
text-anchor="middle" dominant-baseline="central"
|
|
fill="url(#ytGradient)">YTSage</text>
|
|
</svg>
|