Refactor code structure and remove redundant code blocks for improved readability and maintainability
All checks were successful
Chore App Build, Test, and Push Docker Images / build-and-push (push) Successful in 3m12s

This commit is contained in:
2026-04-24 15:59:39 -04:00
parent 6d43fb23ad
commit db846f4e31
15 changed files with 334 additions and 2 deletions

View File

@@ -0,0 +1,81 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1400 500">
<defs>
<!-- Gradients -->
<linearGradient id="greenGrad" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" stop-color="#7EE081"/>
<stop offset="100%" stop-color="#1E9E4A"/>
</linearGradient>
<linearGradient id="blueGrad" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" stop-color="#59B8FF"/>
<stop offset="100%" stop-color="#1F6FD6"/>
</linearGradient>
<linearGradient id="goldGrad" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" stop-color="#FFF3A3"/>
<stop offset="100%" stop-color="#F5A623"/>
</linearGradient>
<!-- Glow for star -->
<filter id="starGlow" x="-50%" y="-50%" width="200%" height="200%">
<feGaussianBlur stdDeviation="12" result="coloredBlur"/>
<feMerge>
<feMergeNode in="coloredBlur"/>
<feMergeNode in="SourceGraphic"/>
</feMerge>
</filter>
</defs>
<!-- Green circular arrow forming C -->
<path d="
M 260 250
A 140 140 0 1 1 259 249
"
fill="none"
stroke="url(#greenGrad)"
stroke-width="45"
stroke-linecap="round"/>
<!-- Arrow head -->
<polygon points="330,120 420,170 350,210"
fill="url(#greenGrad)"/>
<!-- Text before star -->
<text x="420" y="290"
font-family="Poppins, Arial, Helvetica, sans-serif"
font-size="170"
font-weight="700"
fill="url(#blueGrad)"
letter-spacing="8">
H
</text>
<!-- Star as O -->
<g filter="url(#starGlow)">
<polygon points="620,140 655,215 740,225 675,280 700,360 620,315 540,360 565,280 500,225 585,215"
fill="url(#goldGrad)"/>
</g>
<!-- Remaining letters -->
<text x="770" y="290"
font-family="Poppins, Arial, Helvetica, sans-serif"
font-size="170"
font-weight="700"
fill="url(#blueGrad)"
letter-spacing="8">
RLY
</text>
<!-- Tagline -->
<text x="420" y="400"
font-family="Poppins, Arial, Helvetica, sans-serif"
font-size="70"
font-weight="600"
fill="#1F4E79"
letter-spacing="6">
MAKING CHORES FUN
</text>
</svg>

After

Width:  |  Height:  |  Size: 2.2 KiB