-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathindex.html
More file actions
49 lines (49 loc) · 2.78 KB
/
Copy pathindex.html
File metadata and controls
49 lines (49 loc) · 2.78 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/favicon.svg?v=2" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="theme-color" content="#F8F9FA" />
<meta name="description" content="A chat application powered by Gemini" />
<meta name="google-site-verification" content="FkOcr3VUUxnQVuB5s91Qxgrvt9ZKqv-Wvn3hdQqWpxc" />
<meta name="mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
<meta name="apple-mobile-web-app-title" content="ikunKChat">
<link rel="manifest" href="/manifest.json" />
<link rel="apple-touch-icon" href="/icon-192.png" />
<link rel="apple-touch-icon" sizes="192x192" href="/icon-192.png">
<link rel="apple-touch-icon" sizes="512x512" href="/icon-512.png">
<title>ikunKChat</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/lxgw-wenkai-screen-webfont@1.6.0/style.css" />
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/cn-fontsource-yozai/font.css" />
<script src="https://cdn.tailwindcss.com"></script>
<link rel="stylesheet" href="/index.css">
<!-- Rich Content Rendering Libraries -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/katex@0.16.9/dist/katex.min.css" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.9.0/styles/atom-one-dark.min.css">
<script defer src="https://cdn.jsdelivr.net/npm/katex@0.16.9/dist/katex.min.js" integrity="sha384-XjKyOOlGwcjNTAIQHIpgOno0Hl1YQqzUOEleOLALmuqehneUG+vnGctmUb0ZY0l8" crossorigin="anonymous"></script>
<script defer src="https://cdn.jsdelivr.net/npm/katex@0.16.9/dist/contrib/auto-render.min.js" integrity="sha384-+VBxd3r6XgURycqtZ117nYw44OOcIax56Z4dCRWbxyPt0Koah1uHoK0o4+/RRE05" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.9.0/highlight.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/dompurify@3.0.8/dist/purify.min.js"></script>
<script type="importmap">
{
"imports": {
"react": "https://esm.sh/react@^19.1.1",
"react/": "https://esm.sh/react@^19.1.1/",
"react-dom/": "https://esm.sh/react-dom@^19.1.1/",
"@google/genai": "https://esm.sh/@google/genai@^1.12.0",
"react-dom": "https://esm.sh/react-dom@^19.1.1",
"marked": "https://esm.sh/marked@^16.1.1",
"mermaid": "https://esm.sh/mermaid@^11.9.0"
}
}
</script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/pdfmake/0.2.7/vfs_fonts.js"></script>
</head>
<body class="no-katex-auto-render">
<div id="root"></div>
<script type="module" src="/index.tsx"></script>
</body>
</html>