Files
waggle-os/apps/web/index.html
Oleg Maslov 0c3e2ead3b
Some checks failed
Installer Smoke / installer-smoke (push) Has been cancelled
moving
2026-09-02 10:10:29 +02:00

32 lines
1.2 KiB
HTML

<!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>