Clean, dependency-light front page. Only three things ship here: - index.html — two-button landing: Mobile -> mobile.html, Desktop -> pm_e-2.html - mobile.html — touch-first PWA (+ mobile-sessions.html practice journal) - pm_e-2.html — engraved-notation editor build.sh/deploy.sh trimmed to just these; deploy mirrors dist/ to the web root with rsync --delete. README/CLAUDE.md rewritten for the slim scope. The full project (PM_E-1 editor, embeddable widget, all hardware form-factor pages, Pico firmware editions, the Rust port, and the KiCad/SPICE hardware design) is preserved on the `concepts` branch. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
14 lines
755 B
HTML
14 lines
755 B
HTML
<!-- Shared site header — assembled into every page by build.sh.
|
|
Brand goes to Concepts (the landing); nav: Concepts / Editor / Embed / Theme. -->
|
|
<header class="site-head">
|
|
<a class="brand" href="/" title="VARASYS — Simplifying Complexity">
|
|
<img class="brand-logo brand-dark" src="data:image/png;base64,@BUILD:logo-dark@" alt="VARASYS — Simplifying Complexity" />
|
|
<img class="brand-logo brand-light" src="data:image/png;base64,@BUILD:logo-light@" alt="VARASYS — Simplifying Complexity" />
|
|
</a>
|
|
<nav class="site-nav">
|
|
<a href="/">Concepts</a>
|
|
<a href="/editor.html">Editor</a>
|
|
<a href="/embed.html">Embed</a>
|
|
<button id="themeBtn" class="tbtn" title="toggle light / dark theme">☀</button>
|
|
</nav>
|
|
</header>
|