-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathindex.html
More file actions
54 lines (52 loc) · 1.72 KB
/
index.html
File metadata and controls
54 lines (52 loc) · 1.72 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<link rel="icon" href="/favicon.ico" />
<link rel="icon" href="/icons/favicon.svg" type="image/svg+xml" />
<link rel="icon" href="/icons/favicon.png" type="image/png" sizes="864x865" />
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon-180x180.png" />
<meta name="apple-mobile-web-app-title" content="NEAR AI Private Chat" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, maximum-scale=1, viewport-fit=cover"
/>
<meta name="theme-color" content="#171717" />
<meta name="robots" content="noindex,nofollow" />
<meta name="description" content="NEAR AI Private Chat" />
<link
rel="search"
type="application/opensearchdescription+xml"
title="NEAR AI Private Chat"
href="/opensearch.xml"
/>
<link
href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap"
rel="stylesheet"
/>
<title>NEAR AI Private Chat</title>
<script type="text/javascript">
window.$crisp = [];
window.CRISP_WEBSITE_ID = "bdd3f956-a76f-444f-8d4c-80e2209da4e1";
(function () {
d = document;
s = d.createElement("script");
s.src = "https://client.crisp.chat/l.js";
s.async = 1;
d.getElementsByTagName("head")[0].appendChild(s);
})();
// Wait for Crisp to be fully loaded, then hide the chat bubble
window.CRISP_READY_TRIGGER = function() {
$crisp.push(["do", "chat:hide"]);
};
// Re-hide when chat is closed
window.$crisp.push(["on", "chat:closed", function () {
window.$crisp.push(["do", "chat:hide"]);
}]);
</script>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>