moving
Some checks failed
Installer Smoke / installer-smoke (push) Has been cancelled

This commit is contained in:
Oleg Maslov
2026-09-02 10:10:29 +02:00
commit 0c3e2ead3b
3841 changed files with 970576 additions and 0 deletions

31
apps/web/index.html Normal file
View File

@@ -0,0 +1,31 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- Apply the persisted theme before hydration without weakening the
production script-src policy. The classic same-origin script blocks
parsing briefly so light-mode users do not see a dark first frame. -->
<script src="/theme-init.js"></script>
<style>
html { background-color: #14110b; }
html[data-theme="light"] { background-color: #f7f1e4; }
</style>
<link rel="icon" type="image/png" href="/waggle-logo.png" />
<link rel="apple-touch-icon" href="/waggle-logo.png" />
<title>Waggle OS</title>
<meta name="description" content="Workspace-native AI agent platform with persistent memory" />
<meta name="author" content="Marko Markovic" />
<meta property="og:title" content="Waggle OS" />
<meta property="og:description" content="Workspace-native AI agent platform with persistent memory" />
<meta property="og:type" content="website" />
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>