-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
80 lines (74 loc) · 2.98 KB
/
index.html
File metadata and controls
80 lines (74 loc) · 2.98 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- Primary Meta Tags -->
<title>AI Chat Hub - Universal Multi-Provider Assistant</title>
<meta
name="title"
content="AI Chat Hub - Universal Multi-Provider Assistant | Arnob Mahmud"
/>
<meta
name="description"
content="Advanced AI chat bot supporting multiple AI providers including Google Gemini, Groq, OpenRouter, Hugging Face, and OpenAI. Engage in intelligent conversations with an intuitive interface and chat history management."
/>
<meta
name="keywords"
content="AI chat bot, artificial intelligence, chatbot, AI assistant, Gemini AI, Groq, OpenRouter, Hugging Face, OpenAI, GPT, conversation AI, TypeScript, React, Arnob Mahmud"
/>
<meta name="author" content="Arnob Mahmud" />
<meta name="robots" content="index, follow" />
<meta name="language" content="English" />
<meta name="revisit-after" content="7 days" />
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website" />
<meta property="og:url" content="https://arnob-mahmud.vercel.app/" />
<meta
property="og:title"
content="AI Chat Hub - Universal Multi-Provider Assistant"
/>
<meta
property="og:description"
content="Advanced AI chat bot supporting multiple AI providers including Google Gemini, Groq, OpenRouter, Hugging Face, and OpenAI. Engage in intelligent conversations with an intuitive interface and chat history management."
/>
<meta
property="og:image"
content="https://arnob-mahmud.vercel.app/chatbot.svg"
/>
<meta property="og:site_name" content="AI Chat Hub" />
<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image" />
<meta property="twitter:url" content="https://arnob-mahmud.vercel.app/" />
<meta
property="twitter:title"
content="AI Chat Hub - Universal Multi-Provider Assistant"
/>
<meta
property="twitter:description"
content="Advanced AI chat bot supporting multiple AI providers including Google Gemini, Groq, OpenRouter, Hugging Face, and OpenAI. Engage in intelligent conversations with an intuitive interface and chat history management."
/>
<meta
property="twitter:image"
content="https://arnob-mahmud.vercel.app/chatbot.svg"
/>
<!-- Favicon -->
<link rel="icon" type="image/x-icon" href="/favicon.ico" />
<link rel="apple-touch-icon" href="/chatbot.svg" />
<!-- Theme Color -->
<meta name="theme-color" content="#8e25bf" />
<!-- External Stylesheets -->
<link
href="https://unpkg.com/boxicons@2.1.4/css/boxicons.min.css"
rel="stylesheet"
/>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.6.0/css/all.min.css"
/>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>