-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
33 lines (27 loc) · 1.31 KB
/
index.html
File metadata and controls
33 lines (27 loc) · 1.31 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- Favicon -->
<link rel="icon" type="image/x-icon" href="/favicon.ico" />
<!-- Font Preloading for Performance -->
<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=JetBrains+Mono:wght@400;500;600&family=Fira+Code:wght@400;500;600&display=swap" rel="stylesheet">
<link rel="stylesheet" href="/src/index.css" />
<title>C3CHAT - Minimal AI Chat</title>
<meta name="description" content="Minimal AI chat application with monospace design and multiple LLM providers">
<!-- Open Graph / Social Media -->
<meta property="og:title" content="C3CHAT - Minimal AI Chat">
<meta property="og:description" content="Minimal AI chat application with monospace design and multiple LLM providers">
<meta property="og:image" content="/og-preview.png" />
<meta property="og:type" content="website">
<!-- Theme Color -->
<meta name="theme-color" content="#6366f1">
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>