Created
January 20, 2026 10:29
-
-
Save aburaihan-dev/c82f20327b55b72a40356c2ce7494ca3 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <svg width="600" height="180" viewBox="0 0 600 180" xmlns="http://www.w3.org/2000/svg"> | |
| <style> | |
| .stage { fill: #e8f4ff; stroke: #77aaff; stroke-width: 1.5; } | |
| .text { font: 14px sans-serif; fill: #003366; font-weight: bold; } | |
| .arrow { stroke: #003366; stroke-width: 2; marker-end: url(#arrowhead); } | |
| </style> | |
| <!-- Arrowhead for flow --> | |
| <defs> | |
| <marker id="arrowhead" markerWidth="10" markerHeight="7" refX="10" refY="3.5" orient="auto"> | |
| <polygon points="0 0, 10 3.5, 0 7" fill="#003366" /> | |
| </marker> | |
| </defs> | |
| <!-- Boxes --> | |
| <rect x="30" y="50" width="120" height="50" class="stage"/> | |
| <text x="62" y="80" class="text">Checkout</text> | |
| <rect x="190" y="50" width="120" height="50" class="stage"/> | |
| <text x="230" y="80" class="text">Build</text> | |
| <rect x="350" y="50" width="120" height="50" class="stage"/> | |
| <text x="395" y="80" class="text">Test</text> | |
| <rect x="510" y="50" width="120" height="50" class="stage"/> | |
| <text x="545" y="80" class="text">Archive</text> | |
| <!-- Arrows --> | |
| <line x1="150" y1="75" x2="190" y2="75" class="arrow"/> | |
| <line x1="310" y1="75" x2="350" y2="75" class="arrow"/> | |
| <line x1="470" y1="75" x2="510" y2="75" class="arrow"/> | |
| </svg> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment