Skip to content

Commit cb365de

Browse files
committed
Fix circuit SVG arrows for corrected node positions
1 parent c68587b commit cb365de

1 file changed

Lines changed: 14 additions & 8 deletions

File tree

index.html

Lines changed: 14 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -169,16 +169,22 @@ <h2>The Circuit</h2>
169169
<div class="circuit-ring">
170170
<svg class="circuit-svg" viewBox="0 0 380 380">
171171
<defs>
172-
<marker id="arrowhead" markerWidth="8" markerHeight="6" refX="8" refY="3" orient="auto">
173-
<polygon points="0 0, 8 3, 0 6" fill="#555" />
172+
<marker id="arrowhead" markerWidth="10" markerHeight="7" refX="10" refY="3.5" orient="auto">
173+
<polygon points="0 0, 10 3.5, 0 7" fill="#FF8C42" opacity="0.7" />
174174
</marker>
175175
</defs>
176-
<path d="M 215,52 Q 310,50 325,120" stroke="#333" stroke-width="1.5" fill="none" marker-end="url(#arrowhead)" />
177-
<path d="M 340,190 Q 340,260 310,300" stroke="#333" stroke-width="1.5" fill="none" marker-end="url(#arrowhead)" />
178-
<path d="M 270,340 Q 220,370 175,345" stroke="#333" stroke-width="1.5" fill="none" marker-end="url(#arrowhead)" />
179-
<path d="M 130,330 Q 60,310 45,250" stroke="#333" stroke-width="1.5" fill="none" marker-end="url(#arrowhead)" />
180-
<path d="M 35,180 Q 35,110 70,75" stroke="#333" stroke-width="1.5" fill="none" marker-end="url(#arrowhead)" />
181-
<path d="M 110,48 Q 150,30 175,40" stroke="#333" stroke-width="1.5" fill="none" marker-end="url(#arrowhead)" />
176+
<!-- Research → Evidence -->
177+
<path d="M 229,83 Q 262,55 268,103" stroke="#FF8C42" stroke-width="1.5" fill="none" opacity="0.4" marker-end="url(#arrowhead)" />
178+
<!-- Evidence → Consulting -->
179+
<path d="M 303,170 Q 338,190 303,210" stroke="#FF8C42" stroke-width="1.5" fill="none" opacity="0.4" marker-end="url(#arrowhead)" />
180+
<!-- Consulting → Revenue -->
181+
<path d="M 268,278 Q 262,325 229,298" stroke="#FF8C42" stroke-width="1.5" fill="none" opacity="0.4" marker-end="url(#arrowhead)" />
182+
<!-- Revenue → Experiments -->
183+
<path d="M 151,298 Q 118,325 112,278" stroke="#FF8C42" stroke-width="1.5" fill="none" opacity="0.4" marker-end="url(#arrowhead)" />
184+
<!-- Experiments → Products -->
185+
<path d="M 77,210 Q 42,190 77,170" stroke="#FF8C42" stroke-width="1.5" fill="none" opacity="0.4" marker-end="url(#arrowhead)" />
186+
<!-- Products → Research -->
187+
<path d="M 112,103 Q 118,55 151,83" stroke="#FF8C42" stroke-width="1.5" fill="none" opacity="0.4" marker-end="url(#arrowhead)" />
182188
</svg>
183189
<div class="circuit-node active">Research</div>
184190
<div class="circuit-node">Evidence</div>

0 commit comments

Comments
 (0)