-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
42 lines (42 loc) · 2.27 KB
/
index.html
File metadata and controls
42 lines (42 loc) · 2.27 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/png" href="/logo.png" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- app-meta-start -->
<title>MemohAI - The Agent Orchestrator</title>
<meta name="description" content="Memoh is a self-hosted agent orchestrator for hackers and AI developers, with container isolation, long-term memory, high concurrency, and zero telemetry." />
<meta name="robots" content="index, follow" />
<link rel="canonical" href="https://memoh.ai/" />
<meta property="og:type" content="website" />
<meta property="og:site_name" content="MemohAI" />
<meta property="og:title" content="MemohAI - The Agent Orchestrator" />
<meta property="og:description" content="Self-hosted agent orchestration with container isolation, long-term memory, high concurrency, and zero telemetry." />
<meta property="og:url" content="https://memoh.ai/" />
<meta property="og:image" content="https://memoh.ai/logo.png" />
<meta name="twitter:card" content="summary" />
<meta name="twitter:title" content="MemohAI - The Agent Orchestrator" />
<meta name="twitter:description" content="Self-hosted agent orchestration with container isolation, long-term memory, high concurrency, and zero telemetry." />
<meta name="twitter:image" content="https://memoh.ai/logo.png" />
<!-- app-meta-end -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Fira+Code:wght@400;500;600;700&family=Inter:wght@400;500;600;700;800&display=swap" rel="stylesheet">
<script>
(function () {
try {
var saved = localStorage.getItem('vueuse-color-scheme');
var isDark = saved ? saved === 'dark' : true;
if (isDark) document.documentElement.classList.add('dark');
} catch (_) {
document.documentElement.classList.add('dark');
}
})();
</script>
</head>
<body class="bg-background text-foreground font-sans antialiased selection:bg-primary/20 selection:text-primary">
<div id="app"></div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>