- Add modern-code-icon.svg and update favicon with gradient styling - Implement glass effect, hover animations and gradient text in global.css - Enhance GlassHeader with motion animations and new icon - Update design variables for modern look including shadows and transitions
17 lines
752 B
XML
17 lines
752 B
XML
<svg xmlns="http://www.w3.org/2000/svg" width="128" height="128" viewBox="0 0 128 128" fill="none">
|
|
<defs>
|
|
<linearGradient id="gradient" x1="0%" y1="0%" x2="100%" y2="100%">
|
|
<stop offset="0%" stop-color="#8B5CF6" />
|
|
<stop offset="100%" stop-color="#EC4899" />
|
|
</linearGradient>
|
|
</defs>
|
|
<rect width="128" height="128" rx="24" fill="white" class="dark:fill-black" />
|
|
<path d="M42 38L24 64L42 90" stroke="url(#gradient)" stroke-width="10" stroke-linecap="round" stroke-linejoin="round"/>
|
|
<path d="M86 38L104 64L86 90" stroke="url(#gradient)" stroke-width="10" stroke-linecap="round" stroke-linejoin="round"/>
|
|
<style>
|
|
@media (prefers-color-scheme: dark) {
|
|
.dark\:fill-black { fill: #000; }
|
|
}
|
|
</style>
|
|
</svg>
|