-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
82 lines (80 loc) · 5.39 KB
/
Copy pathindex.html
File metadata and controls
82 lines (80 loc) · 5.39 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="color-scheme" content="light dark" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link rel="preload" as="style" href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap" />
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap" />
<link rel="preload" as="style" href="https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500;600&display=swap" />
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500;600&display=swap" />
<link rel="preconnect" href="https://accounts.google.com" crossorigin />
<link rel="preconnect" href="https://apis.google.com" crossorigin />
<link rel="preconnect" href="https://www.googleapis.com" crossorigin />
<link rel="preconnect" href="https://login.microsoftonline.com" crossorigin />
<link rel="preconnect" href="https://graph.microsoft.com" crossorigin />
<title>Takus — Knowledge OS</title>
<meta name="description" content="Takus — Your Mind, Amplified. AI meeting recorder that captures, transcribes, and extracts action items automatically." />
<meta name="theme-color" content="#0f0f14" />
<meta property="og:title" content="Takus" />
<meta property="og:description" content="Takus — Your Mind, Amplified. AI meeting recorder that captures, transcribes, and extracts action items automatically." />
<meta property="og:type" content="website" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
<meta property="og:url" content="https://takus.netlify.app/" />
<meta property="og:site_name" content="Takus" />
<meta name="twitter:card" content="summary" />
<meta name="twitter:title" content="Takus — Knowledge OS" />
<meta name="twitter:description" content="Takus — Your Mind, Amplified. AI meeting recorder that captures, transcribes, and extracts action items automatically." />
<link rel="canonical" href="https://takus.netlify.app/" />
<link rel="icon" type="image/svg+xml" href="./favicon.svg" />
<link rel="apple-touch-icon" href="./icon-192.png" />
<link rel="manifest" href="./manifest.json" />
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "SoftwareApplication",
"name": "Takus",
"url": "https://takus.netlify.app",
"description": "Adaptive AI Knowledge OS. Capture meetings, screens, and documents. AI-powered goal preservation, task extraction, people tracking, and knowledge graph. Local-first, private, free.",
"applicationCategory": "ProductivityApplication",
"operatingSystem": "Web Browser",
"offers": { "@type": "Offer", "price": "0", "priceCurrency": "USD" },
"browserRequirements": "Requires a modern browser with MediaRecorder API support"
}
</script>
</head>
<body>
<a href="#app" class="skip-link">Skip to content</a>
<div id="app">
<!-- Loading skeleton — shown until JS hydrates -->
<div style="max-width:1100px;margin:0 auto;padding:1.5rem;">
<div style="display:flex;align-items:center;gap:0.75rem;margin-bottom:2rem;">
<div style="width:36px;height:36px;border-radius:10px;background:linear-gradient(135deg,#8b5cf6,#3b82f6);"></div>
<div style="width:60px;height:18px;border-radius:6px;background:rgba(255,255,255,0.06);"></div>
</div>
<div style="display:flex;flex-direction:column;gap:1rem;">
<div style="height:28px;width:45%;border-radius:8px;background:linear-gradient(90deg,rgba(255,255,255,0.04) 25%,rgba(255,255,255,0.08) 50%,rgba(255,255,255,0.04) 75%);background-size:200% 100%;animation:shimmer 1.5s infinite;"></div>
<div style="height:16px;width:30%;border-radius:6px;background:linear-gradient(90deg,rgba(255,255,255,0.04) 25%,rgba(255,255,255,0.08) 50%,rgba(255,255,255,0.04) 75%);background-size:200% 100%;animation:shimmer 1.5s infinite;"></div>
<div style="display:grid;grid-template-columns:repeat(3,1fr);gap:1rem;margin-top:1rem;">
<div style="height:120px;border-radius:12px;background:rgba(255,255,255,0.03);border:1px solid rgba(255,255,255,0.06);"></div>
<div style="height:120px;border-radius:12px;background:rgba(255,255,255,0.03);border:1px solid rgba(255,255,255,0.06);"></div>
<div style="height:120px;border-radius:12px;background:rgba(255,255,255,0.03);border:1px solid rgba(255,255,255,0.06);"></div>
</div>
</div>
<style>@keyframes shimmer{0%{background-position:200% 0}to{background-position:-200% 0}}</style>
</div>
</div>
<noscript>
<div style="text-align:center;padding:4rem 2rem;color:#94a3b8;font-family:Inter,sans-serif;">
<h1 style="color:#f1f5f9;">Takus requires JavaScript</h1>
<p>Please enable JavaScript in your browser to use Takus Knowledge OS.</p>
</div>
</noscript>
<!-- Runtime config (OAuth credentials). Edit public/config.js to customise. -->
<script defer src="./config.js"></script>
<script type="module" src="/src/main.js"></script>
</body>
</html>