-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathindex.html
59 lines (53 loc) · 2.6 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>DeVinci App</title>
<meta name='author' content='Patrick Friedrich'>
<meta name='description' content='Users can have their truly personal AI assistant on this web app. The AI model runs on the user`s device (via the browser) and does not rely on any centrally hosted services.'>
<meta name="keywords" content="AI Chat, Conversational AI, Devinci AI, Chatbot, AI Assistant">
<meta name='robots' content='index, follow'>
<meta charset='UTF-8'>
<meta name='viewport' content='width=device-width, initial-scale=1'>
<meta property="og:title" content="Devinci AI Chat App - Your Intelligent Conversational Assistant">
<meta property="og:description" content="Experience the next generation of AI-powered conversations with Devinci AI Chat. Seamless, intuitive, and smarter than ever.">
<meta property="og:image" content="/meta.jpg">
<meta property="og:url" content="https://devinci.onicai.com">
<meta property="og:type" content="website">
<meta property="og:site_name" content="Devinci AI">
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="Devinci AI Chat App - Your Private Intelligent Conversational Assistant">
<meta name="twitter:description" content="Experience the next generation of private AI-powered conversations with Devinci AI Chat. Seamless, intuitive, and smarter than ever.">
<meta name="twitter:image" content="https://devinci.onicai.com/meta.jpg">
<meta name="twitter:site" content="@onicaiHQ">
<meta name="twitter:creator" content="@onicaiHQ">
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "SoftwareApplication",
"name": "Devinci AI Chat",
"operatingSystem": "Web",
"applicationCategory": "Chatbot",
"description": "Experience the next generation of AI-powered conversations with Devinci AI Chat. Seamless, intuitive, and smarter than ever.",
"image": "https://devinci.onicai.com/meta.jpg",
"url": "https://devinci.onicai.com"
}
</script>
<script>
if ('serviceWorker' in navigator) {
window.addEventListener('load', () => {
navigator.serviceWorker.register('./service-worker.js', { scope: '/' })
.then((registration) => {
console.info('Service Worker registered with scope:', registration);
})
.catch((error) => {
console.error('Service Worker registration failed:', error);
});
});
};
</script>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/DeVinci_frontend/main.ts"></script>
</body>
</html>