Site (packages/site) : adopte le design system Emerald (polices Inter + JetBrains Mono variables, tokens sémantiques, thème clair/sombre + bascule) et met les mockups à jour sur l'app réelle. - style.css : tokens Emerald (@theme sombre + override html[data-theme=light]) ; lib/theme.ts + ThemeToggle.vue + anti-FOUC index.html ; sweep des couleurs brutes vers les tokens dans toutes les sections. - Mockups fidèles à l'IDE multi-projet : HeroMockup (rail ActivityBar au lieu de la sidebar large + v obsolète retirée), ShowcaseSection (supervision au lieu du dashboard worktree-first, onglets mobiles réels), WorkspaceShowcase (diff-add/del, bouton commit accent-solid) ; framing « worktree-first » résiduel levé (i18n). - og-cover.png rafraîchi (carte Emerald). Docs : README.md + README.fr.md (retrait « Status: MVP », ajout du langage Emerald + thème clair/sombre/système, VSIX 0.2.0 -> 0.3.0, section Screenshots), vscode README (VSIX 0.3.0), brand README (thème clair), CHANGELOG daemon 3.2.0. Captures IDE sombre + clair (brand/screenshot-ide-*.png).
73 lines
3.6 KiB
HTML
73 lines
3.6 KiB
HTML
<!doctype html>
|
|
<html lang="en" style="background-color: #09090b">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
<meta name="color-scheme" content="dark" />
|
|
<meta name="theme-color" content="#09090b" />
|
|
<!-- Anti-FOUC : applique la préférence de thème (arb-theme) avant le premier paint.
|
|
Doit rester inline/synchrone. Synchronisé avec src/lib/theme.ts. -->
|
|
<script>
|
|
(function () {
|
|
try {
|
|
var mode = localStorage.getItem('arb-theme') || 'dark';
|
|
var dark = mode === 'dark' || (mode === 'system' && matchMedia('(prefers-color-scheme: dark)').matches);
|
|
var theme = dark ? 'dark' : 'light';
|
|
var bg = dark ? '#09090b' : '#fafafa';
|
|
var el = document.documentElement;
|
|
el.dataset.theme = theme;
|
|
el.style.backgroundColor = bg;
|
|
var cs = document.querySelector('meta[name=color-scheme]');
|
|
if (cs) cs.setAttribute('content', theme);
|
|
var tc = document.querySelector('meta[name=theme-color]');
|
|
if (tc) tc.setAttribute('content', bg);
|
|
} catch (e) {}
|
|
})();
|
|
</script>
|
|
|
|
<title>Arboretum · Mission control for your AI coding agents</title>
|
|
<meta
|
|
name="description"
|
|
content="Arboretum is a local-first daemon you launch with npx that serves a web IDE to run and supervise many Claude Code sessions across git worktrees: edit files, diff, stage and commit, connect git services, all from any device, even your phone."
|
|
/>
|
|
<link rel="canonical" href="https://git-arboretum.com/" />
|
|
|
|
<!-- Open Graph / Twitter -->
|
|
<meta property="og:type" content="website" />
|
|
<meta property="og:url" content="https://git-arboretum.com/" />
|
|
<meta property="og:title" content="Arboretum · Mission control for your AI coding agents" />
|
|
<meta
|
|
property="og:description"
|
|
content="Run and supervise many Claude Code sessions across every git worktree: a browser IDE to edit, diff, commit and clone, from any device, even your phone."
|
|
/>
|
|
<meta property="og:site_name" content="Arboretum" />
|
|
<meta property="og:image" content="https://git-arboretum.com/assets/og-cover.png" />
|
|
<meta property="og:image:width" content="1200" />
|
|
<meta property="og:image:height" content="630" />
|
|
<meta property="og:image:alt" content="Arboretum · mission control for your AI coding agents" />
|
|
<meta name="twitter:card" content="summary_large_image" />
|
|
<meta name="twitter:title" content="Arboretum · Mission control for your AI coding agents" />
|
|
<meta
|
|
name="twitter:description"
|
|
content="Run and supervise many Claude Code sessions across every git worktree: a browser IDE to edit, diff, commit and clone, from any device, even your phone."
|
|
/>
|
|
<meta name="twitter:image" content="https://git-arboretum.com/assets/og-cover.png" />
|
|
|
|
<!-- Icons -->
|
|
<link rel="icon" type="image/svg+xml" href="/icon.svg" />
|
|
<link rel="icon" type="image/x-icon" href="/favicon.ico" />
|
|
<link rel="apple-touch-icon" href="/apple-touch-icon.png" />
|
|
<!-- Polices JetBrains Mono self-host via @fontsource (importées dans src/main.ts). -->
|
|
</head>
|
|
<body>
|
|
<div id="app"></div>
|
|
<noscript>
|
|
<div style="padding: 24px; font-family: system-ui, sans-serif; color: #f4f4f5; text-align: center">
|
|
Arboretum · mission control for your AI coding agents.
|
|
<a href="https://git.lidge.fr/johanleroy/arboretum" style="color: #34d399">View on Gitea</a>.
|
|
</div>
|
|
</noscript>
|
|
<script type="module" src="/src/main.ts"></script>
|
|
</body>
|
|
</html>
|