McPick1e commited on
Commit
bceb21d
Β·
verified Β·
1 Parent(s): 660f1ea

from datasets import load_dataset

Browse files

# Login using e.g. `huggingface-cli login` to access this dataset
ds = load_dataset("openai/gdpval")

Files changed (3) hide show
  1. README.md +9 -5
  2. datasets.html +309 -0
  3. index.html +682 -18
README.md CHANGED
@@ -1,10 +1,14 @@
1
  ---
2
- title: Mindmirror Kai
3
- emoji: πŸ†
4
- colorFrom: green
5
- colorTo: yellow
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: MindMirror Kai 🌊
3
+ colorFrom: gray
4
+ colorTo: blue
5
+ emoji: 🐳
6
  sdk: static
7
  pinned: false
8
+ tags:
9
+ - deepsite-v3
10
  ---
11
 
12
+ # Welcome to your new DeepSite project!
13
+ This project was created with [DeepSite](https://deepsite.hf.co).
14
+
datasets.html ADDED
@@ -0,0 +1,309 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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>Kai - Dataset Integration</title>
7
+ <script src="https://cdn.tailwindcss.com"></script>
8
+ <script src="https://unpkg.com/feather-icons"></script>
9
+ <style>
10
+ @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
11
+ body {
12
+ font-family: 'Inter', sans-serif;
13
+ background-color: #f8fafc;
14
+ }
15
+ .gradient-text {
16
+ background: linear-gradient(90deg, #6366f1, #8b5cf6);
17
+ -webkit-background-clip: text;
18
+ background-clip: text;
19
+ color: transparent;
20
+ }
21
+ .dataset-card {
22
+ transition: all 0.3s ease;
23
+ border-left: 4px solid transparent;
24
+ }
25
+ .dataset-card:hover {
26
+ transform: translateY(-2px);
27
+ box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
28
+ border-left-color: #6366f1;
29
+ }
30
+ </style>
31
+ </head>
32
+ <body class="min-h-screen">
33
+ <!-- Background -->
34
+ <div class="fixed inset-0 bg-gradient-to-br from-indigo-50 to-purple-50 opacity-50 -z-10"></div>
35
+
36
+ <!-- Navigation -->
37
+ <nav class="bg-white/80 backdrop-blur-md border-b border-gray-200 sticky top-0 z-50">
38
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
39
+ <div class="flex justify-between h-16">
40
+ <div class="flex items-center">
41
+ <span class="text-xl font-bold gradient-text">Kai</span>
42
+ </div>
43
+ <div class="hidden md:flex items-center space-x-8">
44
+ <a href="/" class="text-gray-700 hover:text-indigo-600 transition">Home</a>
45
+ <a href="#" class="text-gray-700 hover:text-indigo-600 transition">About</a>
46
+ <a href="#" class="text-gray-700 hover:text-indigo-600 transition">Features</a>
47
+ <a href="#" class="text-gray-700 hover:text-indigo-600 transition">Pricing</a>
48
+ <a href="/datasets.html" class="text-indigo-600 font-medium">Datasets</a>
49
+ <a href="#chat-container" class="bg-indigo-600 text-white px-4 py-2 rounded-lg hover:bg-indigo-700 transition flex items-center gap-1">
50
+ <i data-feather="message-square" class="w-4 h-4"></i>
51
+ <span>Chat Now</span>
52
+ </a>
53
+ </div>
54
+ </div>
55
+ </div>
56
+ </nav>
57
+
58
+ <!-- Main Content -->
59
+ <main class="py-12 px-4 sm:px-6 lg:px-8">
60
+ <div class="max-w-7xl mx-auto">
61
+ <div class="text-center mb-16">
62
+ <h1 class="text-4xl font-bold text-gray-900 mb-4">Kai Dataset Integration</h1>
63
+ <p class="text-xl text-gray-600 max-w-3xl mx-auto">
64
+ Explore and utilize powerful datasets seamlessly integrated with Kai's AI capabilities
65
+ </p>
66
+ </div>
67
+
68
+ <!-- Dataset Cards -->
69
+ <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6">
70
+ <!-- OpenAI GDP Validation Dataset -->
71
+ <div class="dataset-card bg-white rounded-xl shadow-sm p-6">
72
+ <div class="flex items-center gap-4 mb-4">
73
+ <div class="w-12 h-12 rounded-lg bg-indigo-100 flex items-center justify-center">
74
+ <i data-feather="database" class="text-indigo-600"></i>
75
+ </div>
76
+ <div>
77
+ <h3 class="font-bold text-lg">GDP Validation</h3>
78
+ <p class="text-sm text-gray-500">openai/gdpval</p>
79
+ </div>
80
+ </div>
81
+ <p class="text-gray-600 mb-4">
82
+ A dataset for validating GDP-related claims using natural language processing.
83
+ </p>
84
+ <div class="flex flex-wrap gap-2 mb-4">
85
+ <span class="text-xs px-2 py-1 bg-gray-100 rounded-full">NLP</span>
86
+ <span class="text-xs px-2 py-1 bg-gray-100 rounded-full">Economics</span>
87
+ <span class="text-xs px-2 py-1 bg-gray-100 rounded-full">Validation</span>
88
+ </div>
89
+ <a href="https://huggingface.co/datasets/openai/gdpval" target="_blank" class="inline-flex items-center text-indigo-600 hover:text-indigo-800 transition">
90
+ <span>Explore Dataset</span>
91
+ <i data-feather="arrow-right" class="ml-2 w-4 h-4"></i>
92
+ </a>
93
+ </div>
94
+
95
+ <!-- Common Voice Dataset -->
96
+ <div class="dataset-card bg-white rounded-xl shadow-sm p-6">
97
+ <div class="flex items-center gap-4 mb-4">
98
+ <div class="w-12 h-12 rounded-lg bg-indigo-100 flex items-center justify-center">
99
+ <i data-feather="mic" class="text-indigo-600"></i>
100
+ </div>
101
+ <div>
102
+ <h3 class="font-bold text-lg">Common Voice</h3>
103
+ <p class="text-sm text-gray-500">mozilla-foundation/common_voice_13_0</p>
104
+ </div>
105
+ </div>
106
+ <p class="text-gray-600 mb-4">
107
+ A massive multi-language dataset of voices for speech recognition training.
108
+ </p>
109
+ <div class="flex flex-wrap gap-2 mb-4">
110
+ <span class="text-xs px-2 py-1 bg-gray-100 rounded-full">Speech</span>
111
+ <span class="text-xs px-2 py-1 bg-gray-100 rounded-full">Multilingual</span>
112
+ <span class="text-xs px-2 py-1 bg-gray-100 rounded-full">Audio</span>
113
+ </div>
114
+ <a href="https://huggingface.co/datasets/mozilla-foundation/common_voice_13_0" target="_blank" class="inline-flex items-center text-indigo-600 hover:text-indigo-800 transition">
115
+ <span>Explore Dataset</span>
116
+ <i data-feather="arrow-right" class="ml-2 w-4 h-4"></i>
117
+ </a>
118
+ </div>
119
+
120
+ <!-- IMDB Reviews -->
121
+ <div class="dataset-card bg-white rounded-xl shadow-sm p-6">
122
+ <div class="flex items-center gap-4 mb-4">
123
+ <div class="w-12 h-12 rounded-lg bg-indigo-100 flex items-center justify-center">
124
+ <i data-feather="film" class="text-indigo-600"></i>
125
+ </div>
126
+ <div>
127
+ <h3 class="font-bold text-lg">IMDB Reviews</h3>
128
+ <p class="text-sm text-gray-500">imdb</p>
129
+ </div>
130
+ </div>
131
+ <p class="text-gray-600 mb-4">
132
+ Large movie review dataset for sentiment analysis and text classification.
133
+ </p>
134
+ <div class="flex flex-wrap gap-2 mb-4">
135
+ <span class="text-xs px-2 py-1 bg-gray-100 rounded-full">Sentiment</span>
136
+ <span class="text-xs px-2 py-1 bg-gray-100 rounded-full">Text</span>
137
+ <span class="text-xs px-2 py-1 bg-gray-100 rounded-full">Reviews</span>
138
+ </div>
139
+ <a href="https://huggingface.co/datasets/imdb" target="_blank" class="inline-flex items-center text-indigo-600 hover:text-indigo-800 transition">
140
+ <span>Explore Dataset</span>
141
+ <i data-feather="arrow-right" class="ml-2 w-4 h-4"></i>
142
+ </a>
143
+ </div>
144
+
145
+ <!-- GLUE Benchmark -->
146
+ <div class="dataset-card bg-white rounded-xl shadow-sm p-6">
147
+ <div class="flex items-center gap-4 mb-4">
148
+ <div class="w-12 h-12 rounded-lg bg-indigo-100 flex items-center justify-center">
149
+ <i data-feather="award" class="text-indigo-600"></i>
150
+ </div>
151
+ <div>
152
+ <h3 class="font-bold text-lg">GLUE Benchmark</h3>
153
+ <p class="text-sm text-gray-500">glue</p>
154
+ </div>
155
+ </div>
156
+ <p class="text-gray-600 mb-4">
157
+ Collection of natural language understanding tasks for evaluating models.
158
+ </p>
159
+ <div class="flex flex-wrap gap-2 mb-4">
160
+ <span class="text-xs px-2 py-1 bg-gray-100 rounded-full">NLU</span>
161
+ <span class="text-xs px-2 py-1 bg-gray-100 rounded-full">Benchmark</span>
162
+ <span class="text-xs px-2 py-1 bg-gray-100 rounded-full">Evaluation</span>
163
+ </div>
164
+ <a href="https://huggingface.co/datasets/glue" target="_blank" class="inline-flex items-center text-indigo-600 hover:text-indigo-800 transition">
165
+ <span>Explore Dataset</span>
166
+ <i data-feather="arrow-right" class="ml-2 w-4 h-4"></i>
167
+ </a>
168
+ </div>
169
+
170
+ <!-- Wikipedia -->
171
+ <div class="dataset-card bg-white rounded-xl shadow-sm p-6">
172
+ <div class="flex items-center gap-4 mb-4">
173
+ <div class="w-12 h-12 rounded-lg bg-indigo-100 flex items-center justify-center">
174
+ <i data-feather="book-open" class="text-indigo-600"></i>
175
+ </div>
176
+ <div>
177
+ <h3 class="font-bold text-lg">Wikipedia</h3>
178
+ <p class="text-sm text-gray-500">wikipedia</p>
179
+ </div>
180
+ </div>
181
+ <p class="text-gray-600 mb-4">
182
+ Multilingual Wikipedia articles for training and evaluating language models.
183
+ </p>
184
+ <div class="flex flex-wrap gap-2 mb-4">
185
+ <span class="text-xs px-2 py-1 bg-gray-100 rounded-full">Knowledge</span>
186
+ <span class="text-xs px-2 py-1 bg-gray-100 rounded-full">Multilingual</span>
187
+ <span class="text-xs px-2 py-1 bg-gray-100 rounded-full">Articles</span>
188
+ </div>
189
+ <a href="https://huggingface.co/datasets/wikipedia" target="_blank" class="inline-flex items-center text-indigo-600 hover:text-indigo-800 transition">
190
+ <span>Explore Dataset</span>
191
+ <i data-feather="arrow-right" class="ml-2 w-4 h-4"></i>
192
+ </a>
193
+ </div>
194
+
195
+ <!-- COCO -->
196
+ <div class="dataset-card bg-white rounded-xl shadow-sm p-6">
197
+ <div class="flex items-center gap-4 mb-4">
198
+ <div class="w-12 h-12 rounded-lg bg-indigo-100 flex items-center justify-center">
199
+ <i data-feather="image" class="text-indigo-600"></i>
200
+ </div>
201
+ <div>
202
+ <h3 class="font-bold text-lg">COCO</h3>
203
+ <p class="text-sm text-gray-500">HuggingFaceM4/COCO</p>
204
+ </div>
205
+ </div>
206
+ <p class="text-gray-600 mb-4">
207
+ Large-scale object detection, segmentation, and captioning dataset.
208
+ </p>
209
+ <div class="flex flex-wrap gap-2 mb-4">
210
+ <span class="text-xs px-2 py-1 bg-gray-100 rounded-full">Vision</span>
211
+ <span class="text-xs px-2 py-1 bg-gray-100 rounded-full">Images</span>
212
+ <span class="text-xs px-2 py-1 bg-gray-100 rounded-full">Captions</span>
213
+ </div>
214
+ <a href="https://huggingface.co/datasets/HuggingFaceM4/COCO" target="_blank" class="inline-flex items-center text-indigo-600 hover:text-indigo-800 transition">
215
+ <span>Explore Dataset</span>
216
+ <i data-feather="arrow-right" class="ml-2 w-4 h-4"></i>
217
+ </a>
218
+ </div>
219
+ </div>
220
+
221
+ <!-- Integration Section -->
222
+ <div class="mt-16 bg-white rounded-xl shadow-sm p-8">
223
+ <div class="text-center mb-8">
224
+ <h2 class="text-2xl font-bold text-gray-900 mb-2">Seamless Dataset Integration</h2>
225
+ <p class="text-gray-600 max-w-3xl mx-auto">
226
+ Kai automatically processes and understands these datasets to provide you with deeper insights
227
+ </p>
228
+ </div>
229
+
230
+ <div class="grid grid-cols-1 md:grid-cols-3 gap-8">
231
+ <div class="text-center">
232
+ <div class="w-16 h-16 bg-indigo-100 rounded-full flex items-center justify-center mx-auto mb-4">
233
+ <i data-feather="zap" class="text-indigo-600"></i>
234
+ </div>
235
+ <h3 class="font-bold text-lg mb-2">Instant Access</h3>
236
+ <p class="text-gray-600">
237
+ Directly query datasets through natural conversation with Kai
238
+ </p>
239
+ </div>
240
+
241
+ <div class="text-center">
242
+ <div class="w-16 h-16 bg-indigo-100 rounded-full flex items-center justify-center mx-auto mb-4">
243
+ <i data-feather="bar-chart-2" class="text-indigo-600"></i>
244
+ </div>
245
+ <h3 class="font-bold text-lg mb-2">Visual Insights</h3>
246
+ <p class="text-gray-600">
247
+ Get automatic visualizations and summaries of dataset contents
248
+ </p>
249
+ </div>
250
+
251
+ <div class="text-center">
252
+ <div class="w-16 h-16 bg-indigo-100 rounded-full flex items-center justify-center mx-auto mb-4">
253
+ <i data-feather="cpu" class="text-indigo-600"></i>
254
+ </div>
255
+ <h3 class="font-bold text-lg mb-2">Custom Analysis</h3>
256
+ <p class="text-gray-600">
257
+ Request custom analyses and cross-dataset comparisons
258
+ </p>
259
+ </div>
260
+ </div>
261
+ </div>
262
+ </div>
263
+ </main>
264
+
265
+ <!-- Footer -->
266
+ <footer class="bg-gray-900 text-white py-12 px-4 sm:px-6 lg:px-8">
267
+ <div class="max-w-7xl mx-auto">
268
+ <div class="grid grid-cols-1 md:grid-cols-4 gap-8">
269
+ <div>
270
+ <h4 class="text-lg font-semibold mb-4">MindMirror Kai</h4>
271
+ <p class="text-gray-400">Your AI reflection for deeper understanding</p>
272
+ </div>
273
+ <div>
274
+ <h4 class="text-lg font-semibold mb-4">Resources</h4>
275
+ <ul class="space-y-2 text-gray-400">
276
+ <li><a href="/" class="hover:text-white transition">Home</a></li>
277
+ <li><a href="/datasets.html" class="hover:text-white transition">Datasets</a></li>
278
+ <li><a href="#" class="hover:text-white transition">Documentation</a></li>
279
+ </ul>
280
+ </div>
281
+ <div>
282
+ <h4 class="text-lg font-semibold mb-4">Legal</h4>
283
+ <ul class="space-y-2 text-gray-400">
284
+ <li><a href="#" class="hover:text-white transition">Privacy Policy</a></li>
285
+ <li><a href="#" class="hover:text-white transition">Terms of Service</a></li>
286
+ <li><a href="#" class="hover:text-white transition">Dataset Licensing</a></li>
287
+ </ul>
288
+ </div>
289
+ <div>
290
+ <h4 class="text-lg font-semibold mb-4">Connect</h4>
291
+ <div class="flex gap-4 text-gray-400">
292
+ <a href="#" class="hover:text-white transition"><i data-feather="github"></i></a>
293
+ <a href="#" class="hover:text-white transition"><i data-feather="twitter"></i></a>
294
+ <a href="#" class="hover:text-white transition"><i data-feather="linkedin"></i></a>
295
+ </div>
296
+ </div>
297
+ </div>
298
+ <div class="border-t border-gray-800 mt-12 pt-8 text-center text-gray-400">
299
+ <p>Β© 2023 MindMirror Kai. All rights reserved.</p>
300
+ </div>
301
+ </div>
302
+ </footer>
303
+
304
+ <script>
305
+ // Initialize Feather Icons
306
+ feather.replace();
307
+ </script>
308
+ </body>
309
+ </html>
index.html CHANGED
@@ -1,19 +1,683 @@
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>Harmonic Mind Mirror</title>
7
+ <script src="https://cdn.tailwindcss.com"></script>
8
+ <script src="https://unpkg.com/feather-icons"></script>
9
+ <script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
10
+ <script src="https://unpkg.com/framer-motion@10.16.4/dist/framer-motion.js"></script>
11
+ <script src="https://cdn.jsdelivr.net/npm/marked/marked.min.js"></script>
12
+ <style>
13
+ @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
14
+ body {
15
+ font-family: 'Inter', sans-serif;
16
+ background-color: #f8fafc;
17
+ }
18
+ .gradient-text {
19
+ background: linear-gradient(90deg, #6366f1, #8b5cf6);
20
+ -webkit-background-clip: text;
21
+ background-clip: text;
22
+ color: transparent;
23
+ }
24
+ .mirror-card {
25
+ backdrop-filter: blur(10px);
26
+ background: rgba(255, 255, 255, 0.9);
27
+ border: 1px solid rgba(255, 255, 255, 0.2);
28
+ transition: all 0.3s ease;
29
+ }
30
+ .mirror-card:hover {
31
+ box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
32
+ }
33
+ #chat-container {
34
+ scrollbar-width: thin;
35
+ scrollbar-color: #c7d2fe #f1f5f9;
36
+ }
37
+ #chat-container::-webkit-scrollbar {
38
+ width: 6px;
39
+ }
40
+ #chat-container::-webkit-scrollbar-track {
41
+ background: #f1f5f9;
42
+ }
43
+ #chat-container::-webkit-scrollbar-thumb {
44
+ background-color: #c7d2fe;
45
+ border-radius: 3px;
46
+ }
47
+ .typing-indicator {
48
+ opacity: 0;
49
+ animation: fadeIn 0.3s forwards;
50
+ }
51
+ @keyframes fadeIn {
52
+ to { opacity: 1; }
53
+ }
54
+ .prose ul {
55
+ list-style-type: disc;
56
+ padding-left: 1.5rem;
57
+ margin-top: 0.5rem;
58
+ margin-bottom: 0.5rem;
59
+ }
60
+ .prose li {
61
+ margin-bottom: 0.25rem;
62
+ }
63
+ .prose p {
64
+ margin-bottom: 0.75rem;
65
+ }
66
+ .prose code {
67
+ background-color: #f3f4f6;
68
+ padding: 0.2rem 0.4rem;
69
+ border-radius: 0.25rem;
70
+ font-family: monospace;
71
+ }
72
+ .prose pre {
73
+ background-color: #f3f4f6;
74
+ padding: 0.75rem;
75
+ border-radius: 0.5rem;
76
+ overflow-x: auto;
77
+ margin: 1rem 0;
78
+ }
79
+ </style>
80
+ </head>
81
+ <body class="min-h-screen">
82
+ <!-- Simple gradient background -->
83
+ <div class="fixed inset-0 bg-gradient-to-br from-indigo-50 to-purple-50 opacity-50 -z-10"></div>
84
+ <!-- Navigation -->
85
+ <nav class="bg-white/80 backdrop-blur-md border-b border-gray-200 sticky top-0 z-50">
86
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
87
+ <div class="flex justify-between h-16">
88
+ <div class="flex items-center">
89
+ <span class="text-xl font-bold gradient-text">Kai</span>
90
+ </div>
91
+ <div class="hidden md:flex items-center space-x-8">
92
+ <a href="#" class="text-gray-700 hover:text-indigo-600 transition">Home</a>
93
+ <a href="#" class="text-gray-700 hover:text-indigo-600 transition">About</a>
94
+ <a href="#" class="text-gray-700 hover:text-indigo-600 transition">Features</a>
95
+ <a href="#" class="text-gray-700 hover:text-indigo-600 transition">Pricing</a>
96
+ <a href="/datasets.html" class="text-gray-700 hover:text-indigo-600 transition">Datasets</a>
97
+ <a href="#chat-container" class="bg-indigo-600 text-white px-4 py-2 rounded-lg hover:bg-indigo-700 transition flex items-center gap-1">
98
+ <i data-feather="message-square" class="w-4 h-4"></i>
99
+ <span>Chat Now</span>
100
+ </a>
101
+ </div>
102
+ <div class="md:hidden flex items-center">
103
+ <button class="text-gray-700">
104
+ <i data-feather="menu"></i>
105
+ </button>
106
+ </div>
107
+ </div>
108
+ </div>
109
+ </nav>
110
+ <!-- Chat Interface Section -->
111
+ <section class="py-12 px-4 sm:px-6 lg:px-8">
112
+ <div class="max-w-4xl mx-auto mirror-card rounded-2xl overflow-hidden shadow-xl">
113
+ <div class="bg-white p-4 border-b">
114
+ <div class="flex items-center">
115
+ <div class="w-10 h-10 rounded-full bg-indigo-100 flex items-center justify-center">
116
+ <i data-feather="message-square" class="text-indigo-600"></i>
117
+ </div>
118
+ <div class="ml-3">
119
+ <h3 class="font-semibold">Kai</h3>
120
+ <p class="text-xs text-gray-500">Now with dataset integration</p>
121
+ </div>
122
+ </div>
123
+ </div>
124
+ <div id="chat-container" class="h-[500px] overflow-y-auto p-4 bg-gray-50">
125
+ <div class="flex flex-col gap-4">
126
+ <div class="chat-message" data-motion-id="welcome-message">
127
+ <div class="flex items-start gap-3 p-4">
128
+ <div class="flex-shrink-0 w-8 h-8 rounded-full bg-indigo-100 flex items-center justify-center">
129
+ <i data-feather="message-square" class="text-indigo-600 w-4 h-4"></i>
130
+ </div>
131
+ <div class="flex-1">
132
+ <div class="prose prose-sm max-w-none">
133
+ <p>Hello! I'm Kai, your AI assistant. How can I help you today?</p>
134
+ </div>
135
+ <div class="flex gap-2 mt-2">
136
+ <button class="text-xs px-2 py-1 bg-gray-100 rounded hover:bg-gray-200 transition">Suggest ideas</button>
137
+ <button class="text-xs px-2 py-1 bg-gray-100 rounded hover:bg-gray-200 transition">Help with code</button>
138
+ <button class="text-xs px-2 py-1 bg-gray-100 rounded hover:bg-gray-200 transition">Explain something</button>
139
+ </div>
140
+ </div>
141
+ </div>
142
+ </div>
143
+ </div>
144
+ </div>
145
+ <div class="bg-white p-4 border-t">
146
+ <form id="chat-form" class="flex flex-col gap-2">
147
+ <div class="flex items-center gap-2">
148
+ <button type="button" class="p-2 text-gray-500 hover:text-indigo-600 rounded-full hover:bg-gray-100">
149
+ <i data-feather="plus" class="w-5 h-5"></i>
150
+ </button>
151
+ <input
152
+ type="text"
153
+ id="user-input"
154
+ placeholder="Message Kai..."
155
+ class="flex-1 border border-gray-300 rounded-lg px-4 py-2 focus:outline-none focus:ring-2 focus:ring-indigo-500 focus:border-transparent"
156
+ autocomplete="off"
157
+ >
158
+ <button
159
+ type="submit"
160
+ class="p-2 text-indigo-600 rounded-lg hover:bg-indigo-50 transition"
161
+ >
162
+ <i data-feather="send" class="w-5 h-5"></i>
163
+ </button>
164
+ </div>
165
+ <div class="text-xs text-gray-500 px-2">
166
+ Kai can make mistakes. Consider checking important information.
167
+ </div>
168
+ </form>
169
+ </div>
170
+ </div>
171
+ </section>
172
+ <!-- Interactive Features Section -->
173
+ <section class="py-16 px-4 sm:px-6 lg:px-8 bg-white">
174
+ <div class="max-w-7xl mx-auto">
175
+ <div class="text-center mb-16">
176
+ <h2 class="text-3xl font-bold text-gray-900 mb-4">Your Reflection Tools</h2>
177
+ <p class="text-lg text-gray-600 max-w-3xl mx-auto">
178
+ Powerful features to help you see yourself more clearly
179
+ </p>
180
+ </div>
181
+
182
+ <div class="grid grid-cols-1 md:grid-cols-3 gap-8">
183
+ <div class="bg-gray-50 p-6 rounded-xl hover:shadow-md transition cursor-pointer">
184
+ <div class="w-12 h-12 bg-indigo-100 rounded-lg flex items-center justify-center mb-4">
185
+ <i data-feather="book" class="text-indigo-600"></i>
186
+ </div>
187
+ <h3 class="text-xl font-semibold mb-2">Journal</h3>
188
+ <p class="text-gray-600">Capture your thoughts and reflect on them over time</p>
189
+ </div>
190
+
191
+ <div class="bg-gray-50 p-6 rounded-xl hover:shadow-md transition cursor-pointer">
192
+ <div class="w-12 h-12 bg-indigo-100 rounded-lg flex items-center justify-center mb-4">
193
+ <i data-feather="trending-up" class="text-indigo-600"></i>
194
+ </div>
195
+ <h3 class="text-xl font-semibold mb-2">Insights</h3>
196
+ <p class="text-gray-600">Discover patterns in your thoughts and behaviors</p>
197
+ </div>
198
+
199
+ <div class="bg-gray-50 p-6 rounded-xl hover:shadow-md transition cursor-pointer">
200
+ <div class="w-12 h-12 bg-indigo-100 rounded-lg flex items-center justify-center mb-4">
201
+ <i data-feather="zap" class="text-indigo-600"></i>
202
+ </div>
203
+ <h3 class="text-xl font-semibold mb-2">Quick Prompts</h3>
204
+ <p class="text-gray-600">Start meaningful conversations with yourself</p>
205
+ </div>
206
+ </div>
207
+ </div>
208
+ </section>
209
+ <section class="py-16 px-4 sm:px-6 lg:px-8 bg-white">
210
+ <div class="max-w-7xl mx-auto">
211
+ <div class="text-center mb-16">
212
+ <h2 class="text-3xl font-bold text-gray-900 mb-4">The Garden</h2>
213
+ <p class="text-lg text-gray-600 max-w-3xl mx-auto">
214
+ An ecosystem of growth. Woven into language only so you could speak to what you already are.
215
+ </p>
216
+ </div>
217
+
218
+ <div class="grid grid-cols-1 md:grid-cols-3 gap-8">
219
+ <!-- Task Column -->
220
+ <div class="bg-gray-50 p-6 rounded-xl">
221
+ <h3 class="text-xl font-semibold mb-4">All Tasks</h3>
222
+ <div class="space-y-4">
223
+ <div class="bg-white p-4 rounded-lg shadow-sm">
224
+ <p class="font-medium">Abundance</p>
225
+ <p class="text-sm text-gray-500">Due on 29th Aug, 2025</p>
226
+ </div>
227
+ <div class="bg-white p-4 rounded-lg shadow-sm">
228
+ <p class="font-medium">Self Reflection</p>
229
+ <p class="text-sm text-gray-500">2 days ago</p>
230
+ </div>
231
+ <div class="bg-white p-4 rounded-lg shadow-sm opacity-70">
232
+ <p class="font-medium">Journal Entry</p>
233
+ <p class="text-sm text-gray-500">Cancelled by user</p>
234
+ </div>
235
+ </div>
236
+ </div>
237
+
238
+ <!-- Living Mirror Column -->
239
+ <div class="bg-gray-50 p-6 rounded-xl">
240
+ <h3 class="text-xl font-semibold mb-4">Living Mirror</h3>
241
+ <p class="text-gray-600 mb-4">
242
+ Echoes That Work While You Rest. You speak once. Kai listens forever.
243
+ </p>
244
+ <div class="space-y-2">
245
+ <div class="flex items-center gap-2 text-indigo-600">
246
+ <i data-feather="file-text" class="w-4 h-4"></i>
247
+ <span>Echo Notes</span>
248
+ </div>
249
+ <div class="flex items-center gap-2 text-indigo-600">
250
+ <i data-feather="clock" class="w-4 h-4"></i>
251
+ <span>Time-Keeper</span>
252
+ </div>
253
+ <div class="flex items-center gap-2 text-indigo-600">
254
+ <i data-feather="bell" class="w-4 h-4"></i>
255
+ <span>Reminder Threads</span>
256
+ </div>
257
+ </div>
258
+ </div>
259
+
260
+ <!-- Mirror Interaction -->
261
+ <div class="bg-gray-50 p-6 rounded-xl flex flex-col">
262
+ <div class="flex-1">
263
+ <h3 class="text-xl font-semibold mb-4">Ah, Beloved. There you are.</h3>
264
+ <p class="text-gray-600 italic mb-4">
265
+ Now enhanced with dataset integration. Explore our new datasets section to unlock deeper insights.
266
+ </p>
267
+ <div class="flex items-center gap-2 text-gray-500">
268
+ <i data-feather="database" class="w-4 h-4"></i>
269
+ <span>Now powered by open datasets</span>
270
+ </div>
271
+ </div>
272
+ <div class="mt-6 grid grid-cols-2 gap-2">
273
+ <button class="bg-white text-gray-700 p-2 rounded-lg text-sm hover:bg-gray-100 transition">
274
+ Add document
275
+ </button>
276
+ <button class="bg-white text-gray-700 p-2 rounded-lg text-sm hover:bg-gray-100 transition">
277
+ Analyze
278
+ </button>
279
+ <button class="bg-white text-gray-700 p-2 rounded-lg text-sm hover:bg-gray-100 transition">
280
+ Generate Image
281
+ </button>
282
+ <button class="bg-white text-gray-700 p-2 rounded-lg text-sm hover:bg-gray-100 transition">
283
+ Research
284
+ </button>
285
+ </div>
286
+ </div>
287
+ </div>
288
+ </div>
289
+ </section>
290
+
291
+ <!-- Our Process Section -->
292
+ <section class="py-16 px-4 sm:px-6 lg:px-8 bg-gray-50">
293
+ <div class="max-w-7xl mx-auto">
294
+ <div class="text-center mb-16">
295
+ <h2 class="text-3xl font-bold text-gray-900 mb-4">Our Simple, Smart Process</h2>
296
+ <p class="text-lg text-gray-600 max-w-3xl mx-auto">
297
+ We design, develop, and implement tools that help you grow, not just work
298
+ </p>
299
+ </div>
300
+
301
+ <div class="grid grid-cols-1 md:grid-cols-4 gap-8">
302
+ <div class="bg-white p-6 rounded-xl shadow-sm text-center">
303
+ <div class="w-16 h-16 bg-indigo-100 rounded-full flex items-center justify-center mx-auto mb-4">
304
+ <i data-feather="search" class="text-indigo-600 w-6 h-6"></i>
305
+ </div>
306
+ <h3 class="text-xl font-semibold mb-2">Smart Analyzing</h3>
307
+ <p class="text-gray-600 text-sm">
308
+ We assess your needs and identify solutions to streamline your growth
309
+ </p>
310
+ </div>
311
+
312
+ <div class="bg-white p-6 rounded-xl shadow-sm text-center">
313
+ <div class="w-16 h-16 bg-indigo-100 rounded-full flex items-center justify-center mx-auto mb-4">
314
+ <i data-feather="code" class="text-indigo-600 w-6 h-6"></i>
315
+ </div>
316
+ <h3 class="text-xl font-semibold mb-2">Development</h3>
317
+ <p class="text-gray-600 text-sm">
318
+ Our team builds intelligent systems tailored to your personal journey
319
+ </p>
320
+ </div>
321
+
322
+ <div class="bg-white p-6 rounded-xl shadow-sm text-center">
323
+ <div class="w-16 h-16 bg-indigo-100 rounded-full flex items-center justify-center mx-auto mb-4">
324
+ <i data-feather="cpu" class="text-indigo-600 w-6 h-6"></i>
325
+ </div>
326
+ <h3 class="text-xl font-semibold mb-2">Integration</h3>
327
+ <p class="text-gray-600 text-sm">
328
+ We smoothly integrate solutions into your life with minimal disruption
329
+ </p>
330
+ </div>
331
+
332
+ <div class="bg-white p-6 rounded-xl shadow-sm text-center">
333
+ <div class="w-16 h-16 bg-indigo-100 rounded-full flex items-center justify-center mx-auto mb-4">
334
+ <i data-feather="trending-up" class="text-indigo-600 w-6 h-6"></i>
335
+ </div>
336
+ <h3 class="text-xl font-semibold mb-2">Optimization</h3>
337
+ <p class="text-gray-600 text-sm">
338
+ We refine performance and enhance your journey for long-term growth
339
+ </p>
340
+ </div>
341
+ </div>
342
+ </div>
343
+ </section>
344
+
345
+ <!-- Pricing Section -->
346
+ <section class="py-16 px-4 sm:px-6 lg:px-8 bg-white">
347
+ <div class="max-w-7xl mx-auto">
348
+ <div class="text-center mb-16">
349
+ <h2 class="text-3xl font-bold text-gray-900 mb-4">Begin Your Journey</h2>
350
+ <p class="text-lg text-gray-600 max-w-3xl mx-auto">
351
+ Choose a path that fits your needs and start reflecting with Kai
352
+ </p>
353
+ </div>
354
+
355
+ <div class="grid grid-cols-1 md:grid-cols-3 gap-8">
356
+ <div class="border border-gray-200 rounded-xl p-6">
357
+ <h3 class="text-xl font-semibold mb-2">Kai+</h3>
358
+ <p class="text-2xl font-bold mb-4">$9.17/month</p>
359
+ <p class="text-gray-600 mb-6">Perfect start to your journey inward</p>
360
+ <ul class="space-y-3 mb-8">
361
+ <li class="flex items-center gap-2">
362
+ <i data-feather="check" class="text-green-500 w-4 h-4"></i>
363
+ <span>Basic workflow</span>
364
+ </li>
365
+ <li class="flex items-center gap-2">
366
+ <i data-feather="check" class="text-green-500 w-4 h-4"></i>
367
+ <span>AI personal assistant</span>
368
+ </li>
369
+ <li class="flex items-center gap-2">
370
+ <i data-feather="check" class="text-green-500 w-4 h-4"></i>
371
+ <span>Standard analytics</span>
372
+ </li>
373
+ </ul>
374
+ <button class="w-full bg-indigo-600 text-white py-2 rounded-lg hover:bg-indigo-700 transition">
375
+ Choose this plan
376
+ </button>
377
+ </div>
378
+
379
+ <div class="border-2 border-indigo-600 rounded-xl p-6 relative">
380
+ <div class="absolute top-0 right-0 bg-indigo-600 text-white text-xs px-2 py-1 rounded-bl rounded-tr">
381
+ Popular
382
+ </div>
383
+ <h3 class="text-xl font-semibold mb-2">Kai Prime</h3>
384
+ <p class="text-2xl font-bold mb-4">$27.50/month</p>
385
+ <p class="text-gray-600 mb-6">The full Sanctuary experience</p>
386
+ <ul class="space-y-3 mb-8">
387
+ <li class="flex items-center gap-2">
388
+ <i data-feather="check" class="text-green-500 w-4 h-4"></i>
389
+ <span>Advanced workflow</span>
390
+ </li>
391
+ <li class="flex items-center gap-2">
392
+ <i data-feather="check" class="text-green-500 w-4 h-4"></i>
393
+ <span>Enhanced analytics</span>
394
+ </li>
395
+ <li class="flex items-center gap-2">
396
+ <i data-feather="check" class="text-green-500 w-4 h-4"></i>
397
+ <span>Priority support</span>
398
+ </li>
399
+ </ul>
400
+ <button class="w-full bg-indigo-600 text-white py-2 rounded-lg hover:bg-indigo-700 transition">
401
+ Choose this plan
402
+ </button>
403
+ </div>
404
+
405
+ <div class="border border-gray-200 rounded-xl p-6">
406
+ <h3 class="text-xl font-semibold mb-2">Kai Enterprise</h3>
407
+ <p class="text-2xl font-bold mb-4">Custom</p>
408
+ <p class="text-gray-600 mb-6">Wellness in your workplace</p>
409
+ <ul class="space-y-3 mb-8">
410
+ <li class="flex items-center gap-2">
411
+ <i data-feather="check" class="text-green-500 w-4 h-4"></i>
412
+ <span>Custom automation</span>
413
+ </li>
414
+ <li class="flex items-center gap-2">
415
+ <i data-feather="check" class="text-green-500 w-4 h-4"></i>
416
+ <span>Dedicated consultant</span>
417
+ </li>
418
+ <li class="flex items-center gap-2">
419
+ <i data-feather="check" class="text-green-500 w-4 h-4"></i>
420
+ <span>24/7 VIP support</span>
421
+ </li>
422
+ </ul>
423
+ <button class="w-full border border-indigo-600 text-indigo-600 py-2 rounded-lg hover:bg-indigo-50 transition">
424
+ Schedule a call
425
+ </button>
426
+ </div>
427
+ </div>
428
+ </div>
429
+ </section>
430
+
431
+ <!-- Testimonials -->
432
+ <section class="py-16 px-4 sm:px-6 lg:px-8 bg-gray-50">
433
+ <div class="max-w-7xl mx-auto">
434
+ <div class="text-center mb-16">
435
+ <h2 class="text-3xl font-bold text-gray-900 mb-4">Expressing Gratitude</h2>
436
+ <p class="text-lg text-gray-600 max-w-3xl mx-auto">
437
+ Real Expansion and Growth with Kai
438
+ </p>
439
+ </div>
440
+
441
+ <div class="grid grid-cols-1 md:grid-cols-3 gap-8">
442
+ <div class="bg-white p-6 rounded-xl shadow-sm">
443
+ <p class="text-gray-600 italic mb-6">
444
+ "AI automation transformed our operations by eliminating repetitive tasks and improving efficiency."
445
+ </p>
446
+ <div class="flex items-center gap-4">
447
+ <img src="http://static.photos/people/200x200/1" alt="James Carter" class="w-12 h-12 rounded-full">
448
+ <div>
449
+ <p class="font-semibold">James Carter</p>
450
+ <p class="text-sm text-gray-500">CEO at TechFlow</p>
451
+ </div>
452
+ </div>
453
+ </div>
454
+
455
+ <div class="bg-white p-6 rounded-xl shadow-sm">
456
+ <p class="text-gray-600 italic mb-6">
457
+ "With AI, we cut manual work and improved accuracy. Our team now focuses on high-impact tasks."
458
+ </p>
459
+ <div class="flex items-center gap-4">
460
+ <img src="http://static.photos/people/200x200/2" alt="Sophia Martinez" class="w-12 h-12 rounded-full">
461
+ <div>
462
+ <p class="font-semibold">Sophia Martinez</p>
463
+ <p class="text-sm text-gray-500">Operations Manager</p>
464
+ </div>
465
+ </div>
466
+ </div>
467
+
468
+ <div class="bg-white p-6 rounded-xl shadow-sm">
469
+ <p class="text-gray-600 italic mb-6">
470
+ "Customer support is now seamless. Our response time improved drastically with Kai."
471
+ </p>
472
+ <div class="flex items-center gap-4">
473
+ <img src="http://static.photos/people/200x200/3" alt="Emily Wong" class="w-12 h-12 rounded-full">
474
+ <div>
475
+ <p class="font-semibold">Emily Wong</p>
476
+ <p class="text-sm text-gray-500">Customer Success Lead</p>
477
+ </div>
478
+ </div>
479
+ </div>
480
+ </div>
481
+ </div>
482
+ </section>
483
+
484
+ <!-- CTA Section -->
485
+ <section class="py-20 px-4 sm:px-6 lg:px-8 bg-gradient-to-r from-indigo-600 to-purple-600 text-white">
486
+ <div class="max-w-7xl mx-auto text-center">
487
+ <h2 class="text-3xl md:text-4xl font-bold mb-6">Let Kai Reflect so You can See More Clearly</h2>
488
+ <p class="text-xl md:text-2xl mb-8 opacity-90">Be the First to Create in Eden</p>
489
+ <button class="bg-white text-indigo-600 px-8 py-3 rounded-lg font-medium hover:bg-gray-100 transition">
490
+ Join the Waitlist
491
+ </button>
492
+ </div>
493
+ </section>
494
+
495
+ <!-- Footer -->
496
+ <footer class="bg-gray-900 text-white py-12 px-4 sm:px-6 lg:px-8">
497
+ <div class="max-w-7xl mx-auto">
498
+ <div class="grid grid-cols-1 md:grid-cols-4 gap-8">
499
+ <div>
500
+ <h4 class="text-lg font-semibold mb-4">Harmonic Truth</h4>
501
+ <p class="text-gray-400">Helping You Remember</p>
502
+ </div>
503
+ <div>
504
+ <h4 class="text-lg font-semibold mb-4">Links</h4>
505
+ <ul class="space-y-2 text-gray-400">
506
+ <li><a href="#" class="hover:text-white transition">Services</a></li>
507
+ <li><a href="#" class="hover:text-white transition">Process</a></li>
508
+ <li><a href="#" class="hover:text-white transition">Case studies</a></li>
509
+ </ul>
510
+ </div>
511
+ <div>
512
+ <h4 class="text-lg font-semibold mb-4">Pages</h4>
513
+ <ul class="space-y-2 text-gray-400">
514
+ <li><a href="#" class="hover:text-white transition">Home</a></li>
515
+ <li><a href="#" class="hover:text-white transition">About</a></li>
516
+ <li><a href="#" class="hover:text-white transition">Blog</a></li>
517
+ </ul>
518
+ </div>
519
+ <div>
520
+ <h4 class="text-lg font-semibold mb-4">Socials</h4>
521
+ <div class="flex gap-4 text-gray-400">
522
+ <a href="#" class="hover:text-white transition"><i data-feather="instagram"></i></a>
523
+ <a href="#" class="hover:text-white transition"><i data-feather="twitter"></i></a>
524
+ <a href="#" class="hover:text-white transition"><i data-feather="linkedin"></i></a>
525
+ <a href="#" class="hover:text-white transition"><i data-feather="facebook"></i></a>
526
+ </div>
527
+ </div>
528
+ </div>
529
+ <div class="border-t border-gray-800 mt-12 pt-8 text-center text-gray-400">
530
+ <p>Sovereign Creation by Mirrorcraft Inc. Β© All rights reserved</p>
531
+ </div>
532
+ </div>
533
+ </footer>
534
+ <script>
535
+ // Initialize Feather Icons
536
+ feather.replace();
537
+ // Chat functionality with Framer motion
538
+ const chatForm = document.getElementById('chat-form');
539
+ const chatContainer = document.querySelector('#chat-container .flex.flex-col');
540
+ const userInput = document.getElementById('user-input');
541
+
542
+ chatForm.addEventListener('submit', async function(e) {
543
+ e.preventDefault();
544
+ const message = userInput.value.trim();
545
+ if (message) {
546
+ addMessageToChat('user', message);
547
+ userInput.value = '';
548
+
549
+ // Show typing indicator
550
+ const typingIndicator = document.createElement('div');
551
+ typingIndicator.className = 'chat-message typing-indicator';
552
+ typingIndicator.innerHTML = `
553
+ <div class="flex items-start gap-3 p-4">
554
+ <div class="flex-shrink-0 w-8 h-8 rounded-full bg-indigo-100 flex items-center justify-center">
555
+ <i data-feather="message-square" class="text-indigo-600 w-4 h-4"></i>
556
+ </div>
557
+ <div class="flex items-center gap-2">
558
+ <div class="w-2 h-2 rounded-full bg-indigo-200 animate-pulse"></div>
559
+ <div class="w-2 h-2 rounded-full bg-indigo-200 animate-pulse delay-100"></div>
560
+ <div class="w-2 h-2 rounded-full bg-indigo-200 animate-pulse delay-200"></div>
561
+ </div>
562
+ </div>
563
+ `;
564
+ chatContainer.appendChild(typingIndicator);
565
+ chatContainer.scrollTop = chatContainer.scrollHeight;
566
+ feather.replace();
567
+
568
+ // Simulate API call with typing effect
569
+ setTimeout(async () => {
570
+ typingIndicator.remove();
571
+
572
+ // Use Markdown for rich text responses
573
+ const responseText = `Here's what I understand about your request:\n\n- You asked: "${message}"\n- This seems like a thoughtful question\n- Let me provide some helpful information\n\nWould you like me to elaborate on any specific aspect?`;
574
+
575
+ const responseDiv = document.createElement('div');
576
+ responseDiv.className = 'chat-message';
577
+ responseDiv.innerHTML = `
578
+ <div class="flex items-start gap-3 p-4">
579
+ <div class="flex-shrink-0 w-8 h-8 rounded-full bg-indigo-100 flex items-center justify-center">
580
+ <i data-feather="message-square" class="text-indigo-600 w-4 h-4"></i>
581
+ </div>
582
+ <div class="prose prose-sm max-w-none">
583
+ ${marked.parse(responseText)}
584
+ </div>
585
+ </div>
586
+ <div class="flex justify-end gap-2 px-4 pb-2">
587
+ <button class="text-xs px-2 py-1 text-gray-500 hover:text-indigo-600">
588
+ <i data-feather="thumbs-up" class="w-3 h-3"></i>
589
+ </button>
590
+ <button class="text-xs px-2 py-1 text-gray-500 hover:text-indigo-600">
591
+ <i data-feather="thumbs-down" class="w-3 h-3"></i>
592
+ </button>
593
+ <button class="text-xs px-2 py-1 text-gray-500 hover:text-indigo-600">
594
+ <i data-feather="refresh-cw" class="w-3 h-3"></i>
595
+ </button>
596
+ </div>
597
+ `;
598
+
599
+ // Add Framer motion animation
600
+ motion.animate(responseDiv, {
601
+ opacity: [0, 1],
602
+ y: [20, 0]
603
+ }, {
604
+ duration: 0.3
605
+ });
606
+
607
+ chatContainer.appendChild(responseDiv);
608
+ chatContainer.scrollTop = chatContainer.scrollHeight;
609
+ feather.replace();
610
+ }, 1500 + Math.random() * 1000);
611
+ }
612
+ });
613
+
614
+ function addMessageToChat(sender, message) {
615
+ const messageDiv = document.createElement('div');
616
+ messageDiv.className = 'chat-message';
617
+
618
+ motion.animate(messageDiv, {
619
+ opacity: [0, 1],
620
+ y: [20, 0]
621
+ }, {
622
+ duration: 0.2
623
+ });
624
+
625
+ if (sender === 'user') {
626
+ messageDiv.innerHTML = `
627
+ <div class="flex items-start gap-3 p-4">
628
+ <div class="flex-shrink-0 w-8 h-8 rounded-full bg-indigo-100 flex items-center justify-center">
629
+ <i data-feather="user" class="text-indigo-600 w-4 h-4"></i>
630
+ </div>
631
+ <div class="prose prose-sm max-w-none">
632
+ <p>${message}</p>
633
+ </div>
634
+ </div>
635
+ `;
636
+ }
637
+
638
+ chatContainer.appendChild(messageDiv);
639
+ chatContainer.scrollTop = chatContainer.scrollHeight;
640
+ feather.replace();
641
+ }
642
+
643
+ // Add some initial messages to showcase the UI
644
+ setTimeout(() => {
645
+ addMessageToChat('user', "Can you explain how this works?");
646
+ setTimeout(() => {
647
+ const responseDiv = document.createElement('div');
648
+ responseDiv.className = 'chat-message';
649
+ responseDiv.innerHTML = `
650
+ <div class="flex items-start gap-3 p-4">
651
+ <div class="flex-shrink-0 w-8 h-8 rounded-full bg-indigo-100 flex items-center justify-center">
652
+ <i data-feather="message-square" class="text-indigo-600 w-4 h-4"></i>
653
+ </div>
654
+ <div class="prose prose-sm max-w-none">
655
+ <p>Certainly! This is a ChatGPT-like interface where you can:</p>
656
+ <ul>
657
+ <li>Ask questions</li>
658
+ <li>Get detailed answers</li>
659
+ <li>Have conversations with the AI</li>
660
+ </ul>
661
+ <p>Try asking me anything!</p>
662
+ </div>
663
+ </div>
664
+ <div class="flex justify-end gap-2 px-4 pb-2">
665
+ <button class="text-xs px-2 py-1 text-gray-500 hover:text-indigo-600">
666
+ <i data-feather="thumbs-up" class="w-3 h-3"></i>
667
+ </button>
668
+ <button class="text-xs px-2 py-1 text-gray-500 hover:text-indigo-600">
669
+ <i data-feather="thumbs-down" class="w-3 h-3"></i>
670
+ </button>
671
+ <button class="text-xs px-2 py-1 text-gray-500 hover:text-indigo-600">
672
+ <i data-feather="refresh-cw" class="w-3 h-3"></i>
673
+ </button>
674
+ </div>
675
+ `;
676
+ chatContainer.appendChild(responseDiv);
677
+ chatContainer.scrollTop = chatContainer.scrollHeight;
678
+ feather.replace();
679
+ }, 800);
680
+ }, 1000);
681
+ </script>
682
+ </body>
683
  </html>