This commit is contained in:
31
apps/web/index.html
Normal file
31
apps/web/index.html
Normal 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>
|
||||
Reference in New Issue
Block a user