This commit is contained in:
overcuriousity 2025-07-15 00:39:58 +02:00
parent a7dc688753
commit 7667e7bd74
2 changed files with 61 additions and 1 deletions

View File

@ -0,0 +1,60 @@
<svg width="400" height="400" viewBox="0 0 400 400" xmlns="http://www.w3.org/2000/svg">
<!-- Blue background -->
<rect width="400" height="400" fill="#1e40af"/>
<!-- Screen/monitor frame -->
<rect x="20" y="20" width="360" height="360" fill="none" stroke="#ffffff" stroke-width="8" rx="10"/>
<rect x="35" y="35" width="330" height="330" fill="none" stroke="#ffffff" stroke-width="4" rx="5"/>
<!-- Scope outer circle -->
<circle cx="200" cy="200" r="140" fill="none" stroke="#ffffff" stroke-width="6"/>
<!-- Crosshairs -->
<!-- Horizontal line -->
<line x1="60" y1="200" x2="340" y2="200" stroke="#ffffff" stroke-width="3"/>
<!-- Vertical line -->
<line x1="200" y1="60" x2="200" y2="340" stroke="#ffffff" stroke-width="3"/>
<!-- Crosshair markers -->
<line x1="120" y1="195" x2="120" y2="205" stroke="#ffffff" stroke-width="2"/>
<line x1="280" y1="195" x2="280" y2="205" stroke="#ffffff" stroke-width="2"/>
<line x1="195" y1="120" x2="205" y2="120" stroke="#ffffff" stroke-width="2"/>
<line x1="195" y1="280" x2="205" y2="280" stroke="#ffffff" stroke-width="2"/>
<!-- Inner scope circle -->
<circle cx="200" cy="200" r="90" fill="none" stroke="#ffffff" stroke-width="2"/>
<!-- Stylized fingerprint -->
<g stroke="#ffffff" stroke-width="2.5" fill="none">
<!-- Center spiral -->
<ellipse cx="200" cy="200" rx="12" ry="15"/>
<!-- Fingerprint ridges -->
<ellipse cx="200" cy="200" rx="22" ry="28"/>
<ellipse cx="200" cy="200" rx="32" ry="40"/>
<ellipse cx="200" cy="200" rx="42" ry="52"/>
<ellipse cx="200" cy="200" rx="52" ry="64"/>
<ellipse cx="200" cy="200" rx="62" ry="75"/>
<!-- Fingerprint pattern breaks for realism -->
<path d="M 160 180 Q 180 175 200 180" stroke-width="2"/>
<path d="M 200 220 Q 220 225 240 220" stroke-width="2"/>
<path d="M 175 240 Q 190 245 205 240" stroke-width="2"/>
<path d="M 180 160 Q 190 155 200 160" stroke-width="2"/>
<!-- Additional ridge details -->
<path d="M 170 200 Q 185 190 200 200" stroke-width="1.5"/>
<path d="M 200 200 Q 215 210 230 200" stroke-width="1.5"/>
</g>
<!-- Scope corner markers -->
<g stroke="#ffffff" stroke-width="2" fill="none">
<path d="M 80 80 L 90 80 L 90 90"/>
<path d="M 320 80 L 310 80 L 310 90"/>
<path d="M 80 320 L 90 320 L 90 310"/>
<path d="M 320 320 L 310 320 L 310 310"/>
</g>
<!-- Center dot -->
<circle cx="200" cy="200" r="3" fill="#ffffff"/>
</svg>

After

Width:  |  Height:  |  Size: 2.4 KiB

View File

@ -8,7 +8,7 @@ const currentPath = Astro.url.pathname;
<div class="container">
<div class="nav-wrapper">
<div class="nav-brand">
<img src="/logo-placeholder.svg" alt="CC24-Hub" class="nav-logo" />
<img src="/fingerprint_scope_logo.svg" alt="CC24-Hub" class="nav-logo" />
<span style="font-weight: 600; font-size: 1.125rem;">CC24-Hub</span>
</div>