Refactor code structure for improved readability and maintainability

This commit is contained in:
catlog22
2026-02-28 22:32:07 +08:00
parent 19fb4d86c7
commit 67b2129f3c
60 changed files with 3002 additions and 643 deletions

View File

@@ -1,5 +1,12 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32" fill="none">
<rect width="32" height="32" rx="6" fill="#3b82f6"/>
<path d="M8 12h16M8 16h12M8 20h8" stroke="white" stroke-width="2" stroke-linecap="round"/>
<circle cx="22" cy="20" r="4" fill="#10b981"/>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none">
<style>
.logo-line { stroke: currentColor; stroke-width: 2; stroke-linecap: round; }
.logo-dot { fill: var(--vp-c-primary, #3B82F6); }
</style>
<!-- Three horizontal lines - line style -->
<line class="logo-line" x1="3" y1="6" x2="18" y2="6"/>
<line class="logo-line" x1="3" y1="12" x2="15" y2="12"/>
<line class="logo-line" x1="3" y1="18" x2="12" y2="18"/>
<!-- Status dot - follows theme -->
<circle class="logo-dot" cx="19" cy="17" r="3"/>
</svg>

Before

Width:  |  Height:  |  Size: 277 B

After

Width:  |  Height:  |  Size: 547 B