|
| 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.0"> |
| 6 | + <!-- TODO: Update the title --> |
| 7 | + <title>Workshop Title</title> |
| 8 | + <link rel="preconnect" href="https://fonts.googleapis.com"> |
| 9 | + <link href="https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=JetBrains+Mono:wght@400;600&display=swap" rel="stylesheet"> |
| 10 | + <link rel="stylesheet" href="styles.css"> |
| 11 | + <link rel="stylesheet" href="light-theme.css"> |
| 12 | + <script src="theme-toggle.js"></script> |
| 13 | +</head> |
| 14 | +<body> |
| 15 | + <div style="position:fixed;top:1rem;right:1rem;z-index:1000;"> |
| 16 | + <button class="theme-toggle" onclick="toggleTheme()">☀️ Light</button> |
| 17 | + </div> |
| 18 | + <section class="hero"> |
| 19 | + <div class="container"> |
| 20 | + <!-- TODO: Update badge, title, subtitle --> |
| 21 | + <div class="hero-badge">🚀 Hands-On Workshop</div> |
| 22 | + <h1>Workshop Title</h1> |
| 23 | + <p class="hero-subtitle">A hands-on workshop description goes here. Describe what participants will learn and build.</p> |
| 24 | + <div class="hero-cta"> |
| 25 | + <a href="step.html?step=readme" class="btn btn-primary">🚀 Start Workshop</a> |
| 26 | + <!-- TODO: Update the GitHub repo URL --> |
| 27 | + <a href="https://github.com/copilot-dev-days/REPO_NAME" class="btn btn-secondary" target="_blank">⭐ GitHub Repo</a> |
| 28 | + </div> |
| 29 | + <div class="stats"> |
| 30 | + <div class="stat"> |
| 31 | + <!-- TODO: Update duration --> |
| 32 | + <div class="stat-value">~60min</div> |
| 33 | + <div class="stat-label">Duration</div> |
| 34 | + </div> |
| 35 | + <div class="stat"> |
| 36 | + <!-- TODO: Update exercise count --> |
| 37 | + <div class="stat-value">3</div> |
| 38 | + <div class="stat-label">Exercises</div> |
| 39 | + </div> |
| 40 | + <div class="stat"> |
| 41 | + <div class="stat-value">1</div> |
| 42 | + <div class="stat-label">Workshop</div> |
| 43 | + </div> |
| 44 | + </div> |
| 45 | + </div> |
| 46 | + </section> |
| 47 | + |
| 48 | + <section class="features"> |
| 49 | + <div class="container"> |
| 50 | + <h2 class="section-title">What You'll Learn</h2> |
| 51 | + <!-- TODO: Update feature cards --> |
| 52 | + <div class="features-grid"> |
| 53 | + <div class="feature-card"> |
| 54 | + <div class="feature-icon">📝</div> |
| 55 | + <h3>Feature One</h3> |
| 56 | + <p>Description of the first key learning objective.</p> |
| 57 | + </div> |
| 58 | + <div class="feature-card"> |
| 59 | + <div class="feature-icon">🔌</div> |
| 60 | + <h3>Feature Two</h3> |
| 61 | + <p>Description of the second key learning objective.</p> |
| 62 | + </div> |
| 63 | + <div class="feature-card"> |
| 64 | + <div class="feature-icon">🤖</div> |
| 65 | + <h3>Feature Three</h3> |
| 66 | + <p>Description of the third key learning objective.</p> |
| 67 | + </div> |
| 68 | + <div class="feature-card"> |
| 69 | + <div class="feature-icon">⚡</div> |
| 70 | + <h3>Feature Four</h3> |
| 71 | + <p>Description of the fourth key learning objective.</p> |
| 72 | + </div> |
| 73 | + </div> |
| 74 | + </div> |
| 75 | + </section> |
| 76 | + |
| 77 | + <section class="workshop"> |
| 78 | + <div class="container"> |
| 79 | + <h2 class="section-title">Workshop Parts</h2> |
| 80 | + <!-- TODO: Update workshop steps to match your workshop/ markdown files --> |
| 81 | + <div class="parts-list"> |
| 82 | + <a href="step.html?step=readme" class="part-card"> |
| 83 | + <div class="part-number">📚</div> |
| 84 | + <div class="part-content"> |
| 85 | + <h3>Workshop Overview</h3> |
| 86 | + <p>Introduction and learning objectives</p> |
| 87 | + </div> |
| 88 | + <span class="part-time">5 min</span> |
| 89 | + </a> |
| 90 | + <a href="step.html?step=00-prereqs" class="part-card"> |
| 91 | + <div class="part-number">00</div> |
| 92 | + <div class="part-content"> |
| 93 | + <h3>Prerequisites</h3> |
| 94 | + <p>Set up your environment</p> |
| 95 | + </div> |
| 96 | + <span class="part-time">10 min</span> |
| 97 | + </a> |
| 98 | + <a href="step.html?step=01-first-exercise" class="part-card"> |
| 99 | + <div class="part-number">01</div> |
| 100 | + <div class="part-content"> |
| 101 | + <h3>First Exercise</h3> |
| 102 | + <p>Description of the first exercise</p> |
| 103 | + </div> |
| 104 | + <span class="part-time">15 min</span> |
| 105 | + </a> |
| 106 | + <a href="step.html?step=02-second-exercise" class="part-card"> |
| 107 | + <div class="part-number">02</div> |
| 108 | + <div class="part-content"> |
| 109 | + <h3>Second Exercise</h3> |
| 110 | + <p>Description of the second exercise</p> |
| 111 | + </div> |
| 112 | + <span class="part-time">15 min</span> |
| 113 | + </a> |
| 114 | + <a href="step.html?step=03-review" class="part-card"> |
| 115 | + <div class="part-number">03</div> |
| 116 | + <div class="part-content"> |
| 117 | + <h3>Review & Next Steps</h3> |
| 118 | + <p>Recap and continue your learning</p> |
| 119 | + </div> |
| 120 | + <span class="part-time">5 min</span> |
| 121 | + </a> |
| 122 | + </div> |
| 123 | + </div> |
| 124 | + </section> |
| 125 | + |
| 126 | + <section class="prereqs"> |
| 127 | + <div class="container"> |
| 128 | + <h2 class="section-title">Prerequisites</h2> |
| 129 | + <!-- TODO: Update prerequisites --> |
| 130 | + <div class="prereqs-grid"> |
| 131 | + <div class="prereq-item"> |
| 132 | + <span class="prereq-check">✓</span> |
| 133 | + <span>GitHub Account</span> |
| 134 | + </div> |
| 135 | + <div class="prereq-item"> |
| 136 | + <span class="prereq-check">✓</span> |
| 137 | + <span>GitHub Copilot</span> |
| 138 | + </div> |
| 139 | + <div class="prereq-item"> |
| 140 | + <span class="prereq-check">✓</span> |
| 141 | + <span>VS Code or IDE</span> |
| 142 | + </div> |
| 143 | + <div class="prereq-item"> |
| 144 | + <span class="prereq-check">✓</span> |
| 145 | + <span>Git installed</span> |
| 146 | + </div> |
| 147 | + </div> |
| 148 | + </div> |
| 149 | + </section> |
| 150 | + |
| 151 | + <footer> |
| 152 | + <div class="container"> |
| 153 | + <div class="footer-links"> |
| 154 | + <!-- TODO: Update footer links --> |
| 155 | + <a href="https://github.com/copilot-dev-days/REPO_NAME" target="_blank">GitHub Repository</a> |
| 156 | + <a href="https://code.visualstudio.com/docs/copilot/overview" target="_blank">Copilot Docs</a> |
| 157 | + <a href="https://github.com/github/awesome-copilot" target="_blank">Awesome Copilot</a> |
| 158 | + </div> |
| 159 | + <p class="footer-credit">Built with 💜 by the GitHub Copilot Team</p> |
| 160 | + </div> |
| 161 | + </footer> |
| 162 | +</body> |
| 163 | +</html> |
0 commit comments