|
15 | 15 | </head> |
16 | 16 |
|
17 | 17 | <body> |
18 | | - <img src="assets/img/SkillSet.PNG" alt="logo" /> |
19 | | - |
20 | | - <div class="visual content"> |
21 | | - <p class="body-text"> |
22 | | - If you'd like to see an example in action, click |
23 | | - <a |
24 | | - href="https://jac21.github.io/viz.html" |
25 | | - target="_blank" |
26 | | - rel="noopener noreferrer" |
27 | | - >here!</a |
28 | | - > |
29 | | - </p> |
30 | | - <!-- basic web form for json uploading and visualizing --> |
31 | | - <form id="json-form"> |
32 | | - <p> |
33 | | - Submit your |
34 | | - <a href="https://jsonresume.org/" target="_blank">JSONResume</a> here |
35 | | - for skillset visualization: |
36 | | - </p> |
37 | | - <input type="file" id="json-input" required /> |
38 | | - <button type="submit" id="json-input-button">Visualize</button> |
39 | | - </form> |
40 | | - |
41 | | - <p id="error-area"></p> |
| 18 | + <div class="page-shell"> |
| 19 | + <header class="hero"> |
| 20 | + <div class="hero-copy"> |
| 21 | + <p class="eyebrow">Resume Storytelling With D3</p> |
| 22 | + <h1>Turn a static skill list into a living knowledge map.</h1> |
| 23 | + <p class="hero-text"> |
| 24 | + SkillSet translates a JSONResume skill section into an interactive |
| 25 | + network that is easier to scan, demo, and discuss with hiring teams. |
| 26 | + </p> |
| 27 | + <div class="hero-actions"> |
| 28 | + <a |
| 29 | + class="demo-link" |
| 30 | + href="https://jac21.github.io/viz.html" |
| 31 | + target="_blank" |
| 32 | + rel="noopener noreferrer" |
| 33 | + >View live example</a |
| 34 | + > |
| 35 | + <a |
| 36 | + class="text-link" |
| 37 | + href="https://jsonresume.org/" |
| 38 | + target="_blank" |
| 39 | + rel="noopener noreferrer" |
| 40 | + >About JSONResume</a |
| 41 | + > |
| 42 | + </div> |
| 43 | + </div> |
| 44 | + |
| 45 | + <div class="hero-brand"> |
| 46 | + <div class="brand-card"> |
| 47 | + <img src="assets/img/SkillSet.PNG" alt="SkillSet logo" class="brand-logo" /> |
| 48 | + <div class="stat-grid"> |
| 49 | + <div class="stat-card"> |
| 50 | + <span class="stat-label">Input</span> |
| 51 | + <strong>JSONResume</strong> |
| 52 | + </div> |
| 53 | + <div class="stat-card"> |
| 54 | + <span class="stat-label">Output</span> |
| 55 | + <strong>Force Graph</strong> |
| 56 | + </div> |
| 57 | + <div class="stat-card"> |
| 58 | + <span class="stat-label">Use Case</span> |
| 59 | + <strong>Live Demos</strong> |
| 60 | + </div> |
| 61 | + </div> |
| 62 | + </div> |
| 63 | + </div> |
| 64 | + </header> |
| 65 | + |
| 66 | + <main class="workspace"> |
| 67 | + <section class="panel controls-panel"> |
| 68 | + <div class="panel-heading"> |
| 69 | + <p class="eyebrow">Upload</p> |
| 70 | + <h2>Generate your visualization</h2> |
| 71 | + </div> |
| 72 | + |
| 73 | + <p class="panel-copy"> |
| 74 | + Drop in a resume export with a populated <code>skills</code> array and |
| 75 | + SkillSet will render the relationships between categories and keywords. |
| 76 | + </p> |
| 77 | + |
| 78 | + <form id="json-form" class="upload-form"> |
| 79 | + <label class="file-field" for="json-input"> |
| 80 | + <span class="file-label">Choose a resume file</span> |
| 81 | + <input type="file" id="json-input" accept=".json,application/json" required /> |
| 82 | + </label> |
| 83 | + <button type="submit" id="json-input-button">Visualize Skills</button> |
| 84 | + </form> |
| 85 | + |
| 86 | + <p id="error-area"></p> |
| 87 | + |
| 88 | + <div class="tips-card"> |
| 89 | + <h3>Best for demos</h3> |
| 90 | + <p> |
| 91 | + Use a resume with a concise set of categories and high-signal keywords. |
| 92 | + Click a node to spotlight it, then drag clusters to talk through depth. |
| 93 | + </p> |
| 94 | + </div> |
| 95 | + </section> |
| 96 | + |
| 97 | + <section class="panel viz-panel"> |
| 98 | + <div class="panel-heading panel-heading-inline"> |
| 99 | + <div> |
| 100 | + <p class="eyebrow">Visualization</p> |
| 101 | + <h2>Interactive skill map</h2> |
| 102 | + </div> |
| 103 | + <span class="viz-badge">D3 Force Layout</span> |
| 104 | + </div> |
| 105 | + |
| 106 | + <div id="visualization-root"> |
| 107 | + <div class="viz-empty-state"> |
| 108 | + <p class="viz-empty-title">Your graph will appear here.</p> |
| 109 | + <p class="viz-empty-copy"> |
| 110 | + Upload a JSONResume file to generate a clean, presentation-ready network |
| 111 | + view of your skills. |
| 112 | + </p> |
| 113 | + </div> |
| 114 | + </div> |
| 115 | + </section> |
| 116 | + </main> |
42 | 117 | </div> |
43 | 118 |
|
44 | 119 | <a |
|
0 commit comments