stakmodsco commited on
Commit
fc4e339
·
verified ·
1 Parent(s): 8122f66

undefined - Initial Deployment

Browse files
Files changed (2) hide show
  1. README.md +7 -5
  2. index.html +440 -19
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Leadmind Ai
3
- emoji:
4
- colorFrom: gray
5
- colorTo: green
6
  sdk: static
7
  pinned: false
 
 
8
  ---
9
 
10
- Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
1
  ---
2
+ title: leadmind-ai
3
+ emoji: 🐳
4
+ colorFrom: yellow
5
+ colorTo: purple
6
  sdk: static
7
  pinned: false
8
+ tags:
9
+ - deepsite
10
  ---
11
 
12
+ Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
index.html CHANGED
@@ -1,19 +1,440 @@
1
- <!doctype html>
2
- <html>
3
- <head>
4
- <meta charset="utf-8" />
5
- <meta name="viewport" content="width=device-width" />
6
- <title>My static Space</title>
7
- <link rel="stylesheet" href="style.css" />
8
- </head>
9
- <body>
10
- <div class="card">
11
- <h1>Welcome to your static Space!</h1>
12
- <p>You can modify this app directly by editing <i>index.html</i> in the Files and versions tab.</p>
13
- <p>
14
- Also don't forget to check the
15
- <a href="https://huggingface.co/docs/hub/spaces" target="_blank">Spaces documentation</a>.
16
- </p>
17
- </div>
18
- </body>
19
- </html>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>LeadMind AI Dashboard</title>
7
+ <script src="https://cdn.tailwindcss.com"></script>
8
+ <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
9
+ <style>
10
+ .gradient-bg {
11
+ background: linear-gradient(135deg, #6e8efb 0%, #a777e3 100%);
12
+ }
13
+ .conversation-item:hover {
14
+ transform: translateY(-2px);
15
+ box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
16
+ }
17
+ .api-status-pulse {
18
+ animation: pulse 2s infinite;
19
+ }
20
+ @keyframes pulse {
21
+ 0% { opacity: 1; }
22
+ 50% { opacity: 0.5; }
23
+ 100% { opacity: 1; }
24
+ }
25
+ .response-animation {
26
+ animation: typing 1.5s steps(40, end);
27
+ }
28
+ @keyframes typing {
29
+ from { width: 0 }
30
+ to { width: 100% }
31
+ }
32
+ </style>
33
+ </head>
34
+ <body class="bg-gray-50 font-sans">
35
+ <div class="min-h-screen flex flex-col">
36
+ <!-- Header -->
37
+ <header class="gradient-bg text-white shadow-lg">
38
+ <div class="container mx-auto px-4 py-4 flex justify-between items-center">
39
+ <div class="flex items-center space-x-3">
40
+ <i class="fas fa-robot text-3xl"></i>
41
+ <h1 class="text-2xl font-bold">LeadMind AI</h1>
42
+ </div>
43
+ <div class="flex items-center space-x-4">
44
+ <div class="relative">
45
+ <i class="fas fa-bell text-xl cursor-pointer"></i>
46
+ <span class="absolute -top-1 -right-1 bg-red-500 text-white text-xs rounded-full h-4 w-4 flex items-center justify-center">3</span>
47
+ </div>
48
+ <div class="flex items-center space-x-2">
49
+ <img src="https://randomuser.me/api/portraits/women/44.jpg" alt="Profile" class="w-8 h-8 rounded-full">
50
+ <span class="font-medium">Admin</span>
51
+ </div>
52
+ </div>
53
+ </div>
54
+ </header>
55
+
56
+ <!-- Main Content -->
57
+ <div class="flex flex-1">
58
+ <!-- Sidebar -->
59
+ <aside class="w-64 bg-white shadow-md hidden md:block">
60
+ <nav class="p-4">
61
+ <div class="mb-8">
62
+ <h2 class="text-gray-500 uppercase text-xs font-semibold tracking-wider mb-4">Navigation</h2>
63
+ <ul class="space-y-2">
64
+ <li>
65
+ <a href="#" class="flex items-center space-x-2 text-purple-600 bg-purple-50 rounded-lg px-3 py-2">
66
+ <i class="fas fa-home"></i>
67
+ <span>Dashboard</span>
68
+ </a>
69
+ </li>
70
+ <li>
71
+ <a href="#" class="flex items-center space-x-2 text-gray-600 hover:text-purple-600 hover:bg-purple-50 rounded-lg px-3 py-2">
72
+ <i class="fas fa-comments"></i>
73
+ <span>Conversations</span>
74
+ </a>
75
+ </li>
76
+ <li>
77
+ <a href="#" class="flex items-center space-x-2 text-gray-600 hover:text-purple-600 hover:bg-purple-50 rounded-lg px-3 py-2">
78
+ <i class="fas fa-users"></i>
79
+ <span>Leads</span>
80
+ </a>
81
+ </li>
82
+ <li>
83
+ <a href="#" class="flex items-center space-x-2 text-gray-600 hover:text-purple-600 hover:bg-purple-50 rounded-lg px-3 py-2">
84
+ <i class="fas fa-plug"></i>
85
+ <span>API Integration</span>
86
+ </a>
87
+ </li>
88
+ <li>
89
+ <a href="#" class="flex items-center space-x-2 text-gray-600 hover:text-purple-600 hover:bg-purple-50 rounded-lg px-3 py-2">
90
+ <i class="fas fa-chart-line"></i>
91
+ <span>Analytics</span>
92
+ </a>
93
+ </li>
94
+ <li>
95
+ <a href="#" class="flex items-center space-x-2 text-gray-600 hover:text-purple-600 hover:bg-purple-50 rounded-lg px-3 py-2">
96
+ <i class="fas fa-cog"></i>
97
+ <span>Settings</span>
98
+ </a>
99
+ </li>
100
+ </ul>
101
+ </div>
102
+
103
+ <div>
104
+ <h2 class="text-gray-500 uppercase text-xs font-semibold tracking-wider mb-4">Quick Actions</h2>
105
+ <button class="w-full bg-purple-600 hover:bg-purple-700 text-white rounded-lg px-3 py-2 mb-2 flex items-center justify-center space-x-2">
106
+ <i class="fas fa-plus"></i>
107
+ <span>New Campaign</span>
108
+ </button>
109
+ <button class="w-full border border-purple-600 text-purple-600 hover:bg-purple-50 rounded-lg px-3 py-2 flex items-center justify-center space-x-2">
110
+ <i class="fas fa-bolt"></i>
111
+ <span>Quick Reply</span>
112
+ </button>
113
+ </div>
114
+ </nav>
115
+ </aside>
116
+
117
+ <!-- Main Content Area -->
118
+ <main class="flex-1 p-6 overflow-auto">
119
+ <div class="container mx-auto">
120
+ <!-- Stats Cards -->
121
+ <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-6 mb-8">
122
+ <div class="bg-white rounded-xl shadow-md p-6">
123
+ <div class="flex items-center justify-between">
124
+ <div>
125
+ <p class="text-gray-500">Total Conversations</p>
126
+ <h3 class="text-2xl font-bold">1,248</h3>
127
+ <p class="text-green-500 text-sm mt-1"><i class="fas fa-arrow-up"></i> 12% from last week</p>
128
+ </div>
129
+ <div class="bg-purple-100 p-3 rounded-full">
130
+ <i class="fas fa-comment-dots text-purple-600 text-xl"></i>
131
+ </div>
132
+ </div>
133
+ </div>
134
+
135
+ <div class="bg-white rounded-xl shadow-md p-6">
136
+ <div class="flex items-center justify-between">
137
+ <div>
138
+ <p class="text-gray-500">New Leads</p>
139
+ <h3 class="text-2xl font-bold">87</h3>
140
+ <p class="text-green-500 text-sm mt-1"><i class="fas fa-arrow-up"></i> 5% from last week</p>
141
+ </div>
142
+ <div class="bg-blue-100 p-3 rounded-full">
143
+ <i class="fas fa-users text-blue-600 text-xl"></i>
144
+ </div>
145
+ </div>
146
+ </div>
147
+
148
+ <div class="bg-white rounded-xl shadow-md p-6">
149
+ <div class="flex items-center justify-between">
150
+ <div>
151
+ <p class="text-gray-500">Resolved Issues</p>
152
+ <h3 class="text-2xl font-bold">92%</h3>
153
+ <p class="text-red-500 text-sm mt-1"><i class="fas fa-arrow-down"></i> 2% from last week</p>
154
+ </div>
155
+ <div class="bg-green-100 p-3 rounded-full">
156
+ <i class="fas fa-check-circle text-green-600 text-xl"></i>
157
+ </div>
158
+ </div>
159
+ </div>
160
+
161
+ <div class="bg-white rounded-xl shadow-md p-6">
162
+ <div class="flex items-center justify-between">
163
+ <div>
164
+ <p class="text-gray-500">API Response Time</p>
165
+ <h3 class="text-2xl font-bold">0.42s</h3>
166
+ <p class="text-green-500 text-sm mt-1"><i class="fas fa-bolt"></i> 98% uptime</p>
167
+ </div>
168
+ <div class="bg-yellow-100 p-3 rounded-full">
169
+ <i class="fas fa-plug text-yellow-600 text-xl"></i>
170
+ </div>
171
+ </div>
172
+ </div>
173
+ </div>
174
+
175
+ <!-- Recent Conversations -->
176
+ <div class="bg-white rounded-xl shadow-md p-6 mb-8">
177
+ <div class="flex justify-between items-center mb-6">
178
+ <h2 class="text-xl font-bold">Recent Conversations</h2>
179
+ <button class="text-purple-600 hover:text-purple-800 flex items-center">
180
+ <span>View All</span>
181
+ <i class="fas fa-chevron-right ml-1"></i>
182
+ </button>
183
+ </div>
184
+
185
+ <div class="space-y-4">
186
+ <div class="conversation-item transition-all duration-200 bg-gray-50 hover:bg-purple-50 rounded-lg p-4 cursor-pointer border border-gray-100">
187
+ <div class="flex items-start space-x-3">
188
+ <img src="https://randomuser.me/api/portraits/men/32.jpg" alt="User" class="w-10 h-10 rounded-full">
189
+ <div class="flex-1">
190
+ <div class="flex justify-between items-start">
191
+ <h4 class="font-medium">Robert Johnson</h4>
192
+ <span class="text-xs text-gray-500">12 min ago</span>
193
+ </div>
194
+ <p class="text-gray-600 text-sm mt-1">Hi, I'm having trouble with my account login. Can you help?</p>
195
+ <div class="mt-2 flex items-center text-xs">
196
+ <span class="bg-green-100 text-green-800 px-2 py-1 rounded-full">New</span>
197
+ <span class="ml-2 text-gray-500"><i class="fas fa-circle text-green-500 text-xs"></i> AI Responded</span>
198
+ </div>
199
+ </div>
200
+ </div>
201
+ </div>
202
+
203
+ <div class="conversation-item transition-all duration-200 bg-gray-50 hover:bg-purple-50 rounded-lg p-4 cursor-pointer border border-gray-100">
204
+ <div class="flex items-start space-x-3">
205
+ <img src="https://randomuser.me/api/portraits/women/65.jpg" alt="User" class="w-10 h-10 rounded-full">
206
+ <div class="flex-1">
207
+ <div class="flex justify-between items-start">
208
+ <h4 class="font-medium">Sarah Williams</h4>
209
+ <span class="text-xs text-gray-500">42 min ago</span>
210
+ </div>
211
+ <p class="text-gray-600 text-sm mt-1">I'm interested in your enterprise plan. Can you send me more details?</p>
212
+ <div class="mt-2 flex items-center text-xs">
213
+ <span class="bg-blue-100 text-blue-800 px-2 py-1 rounded-full">Lead</span>
214
+ <span class="ml-2 text-gray-500"><i class="fas fa-circle text-yellow-500 text-xs"></i> Needs Follow-up</span>
215
+ </div>
216
+ </div>
217
+ </div>
218
+ </div>
219
+
220
+ <div class="conversation-item transition-all duration-200 bg-gray-50 hover:bg-purple-50 rounded-lg p-4 cursor-pointer border border-gray-100">
221
+ <div class="flex items-start space-x-3">
222
+ <img src="https://randomuser.me/api/portraits/men/75.jpg" alt="User" class="w-10 h-10 rounded-full">
223
+ <div class="flex-1">
224
+ <div class="flex justify-between items-start">
225
+ <h4 class="font-medium">Michael Brown</h4>
226
+ <span class="text-xs text-gray-500">2 hours ago</span>
227
+ </div>
228
+ <p class="text-gray-600 text-sm mt-1">The API documentation seems outdated. Where can I find the latest version?</p>
229
+ <div class="mt-2 flex items-center text-xs">
230
+ <span class="bg-purple-100 text-purple-800 px-2 py-1 rounded-full">Technical</span>
231
+ <span class="ml-2 text-gray-500"><i class="fas fa-circle text-green-500 text-xs"></i> Resolved</span>
232
+ </div>
233
+ </div>
234
+ </div>
235
+ </div>
236
+ </div>
237
+ </div>
238
+
239
+ <!-- API Integration & Live Chat -->
240
+ <div class="grid grid-cols-1 lg:grid-cols-2 gap-6 mb-8">
241
+ <!-- API Integration Status -->
242
+ <div class="bg-white rounded-xl shadow-md p-6">
243
+ <div class="flex justify-between items-center mb-6">
244
+ <h2 class="text-xl font-bold">API Integration</h2>
245
+ <span class="flex items-center text-green-500">
246
+ <span class="api-status-pulse h-2 w-2 rounded-full bg-green-500 mr-2"></span>
247
+ Active
248
+ </span>
249
+ </div>
250
+
251
+ <div class="space-y-4">
252
+ <div class="flex items-center justify-between p-3 bg-gray-50 rounded-lg">
253
+ <div class="flex items-center space-x-3">
254
+ <div class="bg-purple-100 p-2 rounded-lg">
255
+ <i class="fas fa-exchange-alt text-purple-600"></i>
256
+ </div>
257
+ <div>
258
+ <h4 class="font-medium">Requests Today</h4>
259
+ <p class="text-gray-500 text-sm">1,042 calls</p>
260
+ </div>
261
+ </div>
262
+ <span class="text-green-500 text-sm">+12%</span>
263
+ </div>
264
+
265
+ <div class="flex items-center justify-between p-3 bg-gray-50 rounded-lg">
266
+ <div class="flex items-center space-x-3">
267
+ <div class="bg-blue-100 p-2 rounded-lg">
268
+ <i class="fas fa-clock text-blue-600"></i>
269
+ </div>
270
+ <div>
271
+ <h4 class="font-medium">Avg. Response Time</h4>
272
+ <p class="text-gray-500 text-sm">0.42 seconds</p>
273
+ </div>
274
+ </div>
275
+ <span class="text-green-500 text-sm">-5%</span>
276
+ </div>
277
+
278
+ <div class="flex items-center justify-between p-3 bg-gray-50 rounded-lg">
279
+ <div class="flex items-center space-x-3">
280
+ <div class="bg-green-100 p-2 rounded-lg">
281
+ <i class="fas fa-check-circle text-green-600"></i>
282
+ </div>
283
+ <div>
284
+ <h4 class="font-medium">Success Rate</h4>
285
+ <p class="text-gray-500 text-sm">98.7%</p>
286
+ </div>
287
+ </div>
288
+ <span class="text-green-500 text-sm">+0.3%</span>
289
+ </div>
290
+ </div>
291
+
292
+ <div class="mt-6">
293
+ <h4 class="font-medium mb-2">API Endpoint</h4>
294
+ <div class="flex">
295
+ <input type="text" value="https://api.yourservice.com/v1/gpt4-agent" class="flex-1 bg-gray-100 border border-gray-300 rounded-l-lg px-4 py-2 text-sm font-mono truncate" readonly>
296
+ <button class="bg-purple-600 hover:bg-purple-700 text-white px-4 py-2 rounded-r-lg">
297
+ <i class="fas fa-copy"></i>
298
+ </button>
299
+ </div>
300
+ </div>
301
+ </div>
302
+
303
+ <!-- Live Chat Demo -->
304
+ <div class="bg-white rounded-xl shadow-md p-6">
305
+ <div class="flex justify-between items-center mb-6">
306
+ <h2 class="text-xl font-bold">Live Chat Demo</h2>
307
+ <div class="flex items-center">
308
+ <span class="h-2 w-2 rounded-full bg-green-500 mr-2"></span>
309
+ <span class="text-sm">LeadMind AI Online</span>
310
+ </div>
311
+ </div>
312
+
313
+ <div class="bg-gray-50 rounded-lg p-4 h-64 overflow-y-auto mb-4">
314
+ <div class="chat-message mb-4">
315
+ <div class="flex items-start">
316
+ <img src="https://randomuser.me/api/portraits/women/44.jpg" alt="User" class="w-8 h-8 rounded-full mr-3">
317
+ <div class="bg-white p-3 rounded-lg shadow-sm max-w-xs">
318
+ <p class="text-sm">Hi there! I'm interested in learning more about your pricing plans.</p>
319
+ <p class="text-xs text-gray-500 mt-1">10:42 AM</p>
320
+ </div>
321
+ </div>
322
+ </div>
323
+
324
+ <div class="chat-message mb-4">
325
+ <div class="flex justify-end">
326
+ <div class="bg-purple-100 p-3 rounded-lg shadow-sm max-w-xs">
327
+ <p class="text-sm response-animation">Hello! I'd be happy to help with that. We offer three pricing tiers: Basic ($29/mo), Pro ($79/mo), and Enterprise (custom pricing). Which one are you interested in?</p>
328
+ <p class="text-xs text-gray-500 mt-1 text-right">10:42 AM <i class="fas fa-robot ml-1"></i></p>
329
+ </div>
330
+ </div>
331
+ </div>
332
+
333
+ <div class="chat-message mb-4">
334
+ <div class="flex items-start">
335
+ <img src="https://randomuser.me/api/portraits/women/44.jpg" alt="User" class="w-8 h-8 rounded-full mr-3">
336
+ <div class="bg-white p-3 rounded-lg shadow-sm max-w-xs">
337
+ <p class="text-sm">I think the Pro plan might work for us. What features are included?</p>
338
+ <p class="text-xs text-gray-500 mt-1">10:43 AM</p>
339
+ </div>
340
+ </div>
341
+ </div>
342
+
343
+ <div class="chat-message">
344
+ <div class="flex justify-end">
345
+ <div class="bg-purple-100 p-3 rounded-lg shadow-sm max-w-xs">
346
+ <p class="text-sm response-animation">The Pro plan includes all Basic features plus: priority support, API access, advanced analytics, and up to 5 team members. Would you like me to send a detailed feature comparison?</p>
347
+ <p class="text-xs text-gray-500 mt-1 text-right">10:43 AM <i class="fas fa-robot ml-1"></i></p>
348
+ </div>
349
+ </div>
350
+ </div>
351
+ </div>
352
+
353
+ <div class="flex">
354
+ <input type="text" placeholder="Type your message..." class="flex-1 border border-gray-300 rounded-l-lg px-4 py-2 focus:outline-none focus:ring-2 focus:ring-purple-500">
355
+ <button class="bg-purple-600 hover:bg-purple-700 text-white px-4 py-2 rounded-r-lg">
356
+ <i class="fas fa-paper-plane"></i>
357
+ </button>
358
+ </div>
359
+ </div>
360
+ </div>
361
+
362
+ <!-- Lead Conversion Chart -->
363
+ <div class="bg-white rounded-xl shadow-md p-6">
364
+ <div class="flex justify-between items-center mb-6">
365
+ <h2 class="text-xl font-bold">Lead Conversion Funnel</h2>
366
+ <div class="flex space-x-2">
367
+ <button class="px-3 py-1 text-sm bg-purple-600 text-white rounded-lg">Weekly</button>
368
+ <button class="px-3 py-1 text-sm bg-white border border-gray-300 rounded-lg">Monthly</button>
369
+ <button class="px-3 py-1 text-sm bg-white border border-gray-300 rounded-lg">Quarterly</button>
370
+ </div>
371
+ </div>
372
+
373
+ <div class="h-64 flex items-end space-x-4">
374
+ <div class="flex-1 flex flex-col items-center">
375
+ <div class="w-full bg-purple-100 rounded-t-lg" style="height: 80%;"></div>
376
+ <p class="mt-2 text-sm font-medium">Initial Contact</p>
377
+ <p class="text-xs text-gray-500">1,248</p>
378
+ </div>
379
+ <div class="flex-1 flex flex-col items-center">
380
+ <div class="w-full bg-purple-200 rounded-t-lg" style="height: 60%;"></div>
381
+ <p class="mt-2 text-sm font-medium">Engaged</p>
382
+ <p class="text-xs text-gray-500">842</p>
383
+ </div>
384
+ <div class="flex-1 flex flex-col items-center">
385
+ <div class="w-full bg-purple-300 rounded-t-lg" style="height: 40%;"></div>
386
+ <p class="mt-2 text-sm font-medium">Qualified</p>
387
+ <p class="text-xs text-gray-500">387</p>
388
+ </div>
389
+ <div class="flex-1 flex flex-col items-center">
390
+ <div class="w-full bg-purple-400 rounded-t-lg" style="height: 20%;"></div>
391
+ <p class="mt-2 text-sm font-medium">Converted</p>
392
+ <p class="text-xs text-gray-500">156</p>
393
+ </div>
394
+ </div>
395
+ </div>
396
+ </div>
397
+ </main>
398
+ </div>
399
+ </div>
400
+
401
+ <script>
402
+ // Simple animation for the chat demo
403
+ document.addEventListener('DOMContentLoaded', function() {
404
+ // Simulate typing animation
405
+ const typingElements = document.querySelectorAll('.response-animation');
406
+ typingElements.forEach(el => {
407
+ el.style.width = '0';
408
+ setTimeout(() => {
409
+ el.style.width = '100%';
410
+ }, 100);
411
+ });
412
+
413
+ // Mobile menu toggle would go here
414
+ // API status indicator animation
415
+ const apiStatus = document.querySelector('.api-status-pulse');
416
+ setInterval(() => {
417
+ apiStatus.classList.toggle('opacity-50');
418
+ }, 2000);
419
+
420
+ // Simulate new message arrival
421
+ setTimeout(() => {
422
+ const chatContainer = document.querySelector('.bg-gray-50.rounded-lg');
423
+ const newMessage = document.createElement('div');
424
+ newMessage.className = 'chat-message mt-4';
425
+ newMessage.innerHTML = `
426
+ <div class="flex items-start">
427
+ <img src="https://randomuser.me/api/portraits/women/44.jpg" alt="User" class="w-8 h-8 rounded-full mr-3">
428
+ <div class="bg-white p-3 rounded-lg shadow-sm max-w-xs">
429
+ <p class="text-sm">Yes, please send that comparison. Also, do you offer annual discounts?</p>
430
+ <p class="text-xs text-gray-500 mt-1">10:44 AM</p>
431
+ </div>
432
+ </div>
433
+ `;
434
+ chatContainer.appendChild(newMessage);
435
+ chatContainer.scrollTop = chatContainer.scrollHeight;
436
+ }, 5000);
437
+ });
438
+ </script>
439
+ <p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=stakmodsco/leadmind-ai" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
440
+ </html>