-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
327 lines (284 loc) · 11.7 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Neotron Ai Chat Assistant - Enhance your communication with our intelligent chatbot solutions.">
<meta name="keywords" content="Neotron Ai, Chat Assistant, Bot Building Contest, Cliqtrix, Chatbot, Zoho SalesIQ, CRM, AI Assistant">
<meta name="author" content="Vignesh G">
<title>Neotron Ai Chat Assistant</title>
<link rel="icon" type="image/x-icon" href="https://in2-files.zohopublic.in/public/SalesIQ/download/d_60034708133_brands_siq937d94d408bf4beb049cee043472db8fab65e37f582e4063786cb8a0928c76bd?x-cli-msg=%7B%22x-siq-soid%22%3A%2260034708133%22%2C%22x-siq-module%22%3A%22brands%22%2C%22x-siq-type%22%3A%22fsticker_online%22%2C%22x-siq-parentid%22%3A%22siq937d94d408bf4beb049cee043472db8fab65e37f582e4063786cb8a0928c76bd%22%2C%22x-siq-resourceid%22%3A%221732812812103_142991000000002236%22%2C%22x-siq-filename%22%3A%22bot%202.png%22%2C%22x-siq-mode%22%3A%22view%22%7D">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<style>
body {
font-family: 'Arial', sans-serif;
margin: 0;
padding: 0;
background-color: #f7f3f3;
}
header h1 {
margin: 0;
font-size: 3rem;
color: #333;
}
main {
padding: 2rem;
}
.crm-section {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
margin-top: 30px;
}
.crm-card {
background: #fff;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
border-radius: 8px;
width: 30%;
margin-bottom: 20px;
padding: 20px;
text-align: center;
transition: transform 0.3s ease;
}
.crm-card:hover {
transform: translateY(-10px);
}
.crm-card h3 {
color: #05783A;
margin-bottom: 15px;
}
.crm-card button {
background: #05783A;
color: white;
border: none;
padding: 10px 15px;
border-radius: 5px;
cursor: pointer;
font-size: 1rem;
}
.crm-card button:hover {
background: #04632E;
}
#about{
text-align: center;
margin-bottom: 50px;
margin-top: 50px;
}
footer {
background-color: #f7f3f3;
color: rgb(37, 29, 29);
text-align: center;
padding: 1rem 0;
position: relative;
width: 100%;
margin-top: 2rem;
}
#toast {
position: fixed;
bottom: 120px;
text-align: center;
left: 44%;
background-color: #5c5c5c;
color: white;
padding: 15px;
border-radius: 8px;
font-size: 1.1rem;
opacity: 0;
transform: translateY(20px);
transition: opacity 0.3s ease, transform 0.3s ease;
}
#toast.show {
opacity: 1;
transform: translateY(0);
}
.integration-section {
background-color: #e9f5f4;
padding: 2rem;
border-radius: 8px;
margin-top: 3rem;
text-align: center;
}
.integration-section h3 {
color: #05783A;
margin-bottom: 20px;
}
.integration-section p {
color: #555;
margin-bottom: 20px;
}
.integration-section code {
background-color: #333;
color: white;
padding: 10px;
border-radius: 4px;
display: block;
margin-bottom: 10px;
text-align: left;
}
.copy-btn {
background-color: #05783A;
color: white;
border: none;
padding: 10px 15px;
border-radius: 5px;
cursor: pointer;
margin-top: 10px;
font-size: 1rem;
}
.copy-btn:hover {
background-color: #057538;
}
.navbar {
margin-bottom: 20px;
background-color: #f7f7f7;
}
.navbar-nav li {
margin-right: 18px;
}
.navbar-nav li a {
color: #091241 !important;
font-weight: 500;
}
.navbar-brand {
font-size: 1.5rem;
font-weight: bold;
color: #091241 !important;
}
.navbar-header {
padding-left: 15px;
}
.about-section {
background-color: #fff;
padding: 3rem 2rem;
margin-top: 30px;
border-radius: 8px;
text-align: center;
}
.about-section h3 {
color: #05783A;
}
#zsiqwidget {
position: fixed !important;
bottom: 100px;
right: 100px;
z-index: 9999;
}
#zsiqwidget iframe {
width: 350px;
height: 500px;
}
.left-align #zsiqwidget {
left: 20px;
right: auto;
}
.top-right #zsiqwidget {
top: 20px;
bottom: auto;
}
.hidden-widget #zsiqwidget {
display: none;
}
</style>
</head>
<body>
<nav class="navbar navbar-default">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="#" style="color: #091241; font-weight: bold;">Neotron Ai</a>
</div>
<ul class="nav navbar-nav navbar-right">
<li><a href="/">Home</a></li>
<li><a href="#features">Features</a></li>
<li><a href="#embedcode">Integration</a></li>
<li><a href="#about">About</a></li>
</ul>
</div>
</nav>
<main>
<div class="container" id="features">
<h2 class="text-center">Enhance your site with Neotron, The intelligent chat assistant!</h2>
<p class="text-center">Experience the future of CRM with Neotron and streamline your customer communication like never before!</p>
<div class="crm-section">
<div class="crm-card col-md-4">
<h3>Lead Management</h3>
<p>Automatically collect, qualify, and manage leads efficiently. Leverage AI-driven insights to convert leads into loyal customers.</p>
</div>
<div class="crm-card col-md-4">
<h3>Customer Support</h3>
<p>Provide 24/7 customer assistance through intelligent chat workflows. Handle FAQs, guide troubleshooting, and escalate complex queries seamlessly.</p>
</div>
<div class="crm-card col-md-4">
<h3>Task Automation</h3>
<p>Automate routine CRM activities such as data entry, follow-ups, ticket scheduling, and record updates to boost team productivity.</p>
</div>
</div>
<div class="crm-section">
<div class="crm-card col-md-4">
<h3>Dynamic Interaction</h3>
<p>Engage visitors with dynamic response cards offering single-choice, multi-choice, or slider options tailored to their needs.</p>
</div>
<div class="crm-card col-md-4">
<h3>Resource Sharing</h3>
<p>Instantly share links, videos, or articles to address customer concerns, helping them find the right solutions faster.</p>
</div>
<div class="crm-card col-md-4">
<h3>Integration-Ready</h3>
<p>Seamlessly integrate with third-party CRMs like HubSpot, Microsoft Dynamics, and Odoo to fetch leads, add contacts, or update deals effortlessly.</p>
</div>
</div>
</div>
</main>
<div class="integration-section" id="embedcode">
<h3>Integrate Neotron into Your Website for Seamless Communication</h3>
<pre><code>
<script>
window.$zoho = window.$zoho || {};
$zoho.salesiq = $zoho.salesiq || { ready: function() {} };
</script>
<script id="zsiqscript" src="https://salesiq.zohopublic.in/widget?wc=siq935148ccc26876fb76fcb97999be305484a791f54b5115a1e97a6155f5faaec5" defer></script>
</code></pre>
<button class="copy-btn" onclick="copyCode()">Copy Code</button>
<div id="toast"></div>
</div>
<div id="about">
<h2 class="text-center">Neotron - Your Intelligent CRM Assistant</h2>
<p class="text-center">Neotron AI is an intelligent, multi-purpose chatbot designed to boost productivity and streamline workflows for IT teams and employees. Developed for the Zoho Cliqtrix competition, Neotron AI combines multiple functionalities into a single, seamless assistant. It serves as an IT Helpdesk Assistant for reporting issues and tracking resolutions, a Skill Development Guide to recommend training sessions, and an Appointment Booking Assistant for scheduling and rescheduling services effortlessly. Additionally, Neotron AI provides Product and Service Updates, keeping users informed about the latest developments, and integrates the powerful ChatGPT-3.5 Turbo to offer dynamic, conversational support. With its user-friendly design and ability to handle diverse tasks, Neotron AI is a versatile and impactful solution that simplifies operations and empowers users to achieve their goals efficiently.</p>
</div>
<footer>
<p>© 2024 Neotron. All rights reserved.</p>
</footer>
<script>
window.$zoho = window.$zoho || {};
$zoho.salesiq = $zoho.salesiq || { ready: function() {} };
</script>
<script id="zsiqscript" src="https://salesiq.zohopublic.in/widget?wc=siq935148ccc26876fb76fcb97999be305484a791f54b5115a1e97a6155f5faaec5" defer></script>
<script>
function copyCode() {
const codeBlock = document.querySelector('pre code');
navigator.clipboard.writeText(codeBlock.innerText).then(() => {
showToast('Integration code copied to clipboard!');
});
}
function showToast(message) {
const toast = document.getElementById('toast');
toast.textContent = message;
toast.className = 'show';
setTimeout(() => {
toast.className = toast.className.replace('show', '');
}, 2500);
}
// Fix deprecated DOM events with MutationObserver
const widgetContainer = document.getElementById('zsiqwidget');
if (widgetContainer) {
const observer = new MutationObserver((mutations) => {
mutations.forEach((mutation) => {
if (mutation.removedNodes.length) {
console.log('Widget has been removed');
}
});
});
observer.observe(widgetContainer.parentNode, { childList: true });
}
</script>
</body>
</html>