- WorkspaceShowcase.vue : maquette fidèle de la vue /workspace (arbre de fichiers + panneau commit staging/amend + diff coloré + terminal corrélé). - RemoteGitSection.vue : connexions GitHub/GitLab/Gitea (chiffrées at-rest) + barre de progression de clone. - 5 cartes features, pilier sécurité « Encrypted secrets », 3 FAQ, ancre nav. - i18n EN/FR à parité ; meta description orientée IDE. Bump 0.2.0.
54 lines
2.7 KiB
HTML
54 lines
2.7 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" />
|
|
|
|
<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>
|