T-017: Fix hero install button to show full git clone URL

The hero button displayed a truncated command missing the repo URL.
Now shows both lines: git clone <url> ~/.blueprint and cd && install.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Julius Brussee
2026-04-01 23:17:12 +02:00
parent 608c0b7380
commit 0146fd6f56
+2 -1
View File
@@ -1710,7 +1710,8 @@
<div class="hero-cta">
<button class="hero-install" onclick="copyInstall()" aria-label="Copy install command">
<span>git clone ~/.blueprint &amp;&amp; ./install.sh</span>
<span style="display:block">git clone https://github.com/JuliusBrussee/blueprint.git ~/.blueprint</span>
<span style="display:block;margin-top:2px">cd ~/.blueprint &amp;&amp; ./install.sh</span>
<span class="hero-install-hint" id="hero-copy-hint" style="display:block;font-size:9px;opacity:0.4;margin-top:4px;letter-spacing:1px">CLICK TO COPY</span>
</button>
</div>