-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
46 lines (40 loc) · 2.53 KB
/
index.html
File metadata and controls
46 lines (40 loc) · 2.53 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Threaded Reader - Read Deeper with AI</title>
<!-- Favicon -->
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<!-- SEO Meta Tags -->
<meta name="description" content="Read deeper with AI. Turn any document into a conversation. Highlight to discuss, explain, or research." />
<meta name="keywords" content="AI reader, document discussion, AI reading companion, threaded conversations, research assistant" />
<meta name="author" content="Threaded Reader" />
<meta name="robots" content="index, follow" />
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website" />
<meta property="og:url" content="https://threaded.andypai.me/" />
<meta property="og:title" content="Threaded Reader - Read Deeper with AI" />
<meta property="og:description" content="Turn any document into a conversation. Highlight to discuss, explain, or research." />
<meta property="og:image" content="https://threaded.andypai.me/og-image.png" />
<!-- Twitter -->
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="Threaded Reader - Read Deeper with AI" />
<meta name="twitter:description" content="Turn any document into a conversation. Highlight to discuss, explain, or research." />
<meta name="twitter:image" content="https://threaded.andypai.me/og-image.png" />
<!-- Theme Color -->
<meta name="theme-color" content="#ffffff" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="default" />
<!-- CSS Dependencies -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/katex@0.16.8/dist/katex.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.9.0/styles/github-dark.min.css">
<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=Merriweather:ital,wght@0,300;0,400;0,700;0,900;1,300;1,400&family=Inter:wght@300;400;500;600&display=swap" rel="stylesheet">
</head>
<body class="bg-white dark:bg-dark-base text-slate-800 dark:text-zinc-200 antialiased h-screen overflow-hidden transition-colors duration-300">
<div id="root" class="h-full"></div>
<script type="module" src="/index.tsx"></script>
</body>
</html>