DestroXyz commited on
Commit
60b7784
·
verified ·
1 Parent(s): e4febc0

Add 3 files

Browse files
Files changed (3) hide show
  1. README.md +7 -5
  2. index.html +347 -19
  3. prompts.txt +1 -0
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Tangent Data Base
3
- emoji: 🚀
4
- colorFrom: gray
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: tangent-data-base
3
+ emoji: 🐳
4
+ colorFrom: purple
5
+ colorTo: gray
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,347 @@
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>NexusAI - Internet Insights Platform</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
+ @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
11
+
12
+ body {
13
+ font-family: 'Inter', sans-serif;
14
+ background-color: #f5f7fa;
15
+ }
16
+
17
+ .gradient-bg {
18
+ background: linear-gradient(135deg, #6e8efb 0%, #a777e3 100%);
19
+ }
20
+
21
+ .survey-card {
22
+ transition: all 0.3s ease;
23
+ box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
24
+ }
25
+
26
+ .survey-card:hover {
27
+ transform: translateY(-5px);
28
+ box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
29
+ }
30
+
31
+ .progress-bar {
32
+ height: 8px;
33
+ border-radius: 4px;
34
+ background-color: #e0e7ff;
35
+ }
36
+
37
+ .progress-fill {
38
+ height: 100%;
39
+ border-radius: 4px;
40
+ background: linear-gradient(90deg, #4f46e5 0%, #a855f7 100%);
41
+ transition: width 0.5s ease;
42
+ }
43
+
44
+ .option-selected {
45
+ background-color: #e0e7ff;
46
+ border-color: #818cf8;
47
+ }
48
+
49
+ .pulse-animation {
50
+ animation: pulse 2s infinite;
51
+ }
52
+
53
+ @keyframes pulse {
54
+ 0% {
55
+ box-shadow: 0 0 0 0 rgba(79, 70, 229, 0.4);
56
+ }
57
+ 70% {
58
+ box-shadow: 0 0 0 10px rgba(79, 70, 229, 0);
59
+ }
60
+ 100% {
61
+ box-shadow: 0 0 0 0 rgba(79, 70, 229, 0);
62
+ }
63
+ }
64
+
65
+ .data-visualization {
66
+ height: 200px;
67
+ background: linear-gradient(to top, #e0e7ff, #f5f7fa);
68
+ border-radius: 12px;
69
+ }
70
+ </style>
71
+ </head>
72
+ <body>
73
+ <div class="min-h-screen">
74
+ <!-- Header -->
75
+ <header class="gradient-bg text-white">
76
+ <div class="container mx-auto px-4 py-6">
77
+ <div class="flex justify-between items-center">
78
+ <div class="flex items-center space-x-2">
79
+ <i class="fas fa-brain text-3xl"></i>
80
+ <h1 class="text-2xl font-bold">Nexus<span class="font-light">AI</span></h1>
81
+ </div>
82
+ <div class="flex items-center space-x-4">
83
+ <button class="px-4 py-2 rounded-full bg-white bg-opacity-20 hover:bg-opacity-30 transition">
84
+ <i class="fas fa-user mr-2"></i> Sign In
85
+ </button>
86
+ <button class="px-4 py-2 rounded-full bg-white text-indigo-600 font-medium hover:bg-opacity-90 transition">
87
+ Get Started
88
+ </button>
89
+ </div>
90
+ </div>
91
+ <div class="mt-12 mb-16 text-center">
92
+ <h2 class="text-4xl font-bold mb-4">Internet Intelligence Survey Platform</h2>
93
+ <p class="text-xl max-w-2xl mx-auto opacity-90">
94
+ Discover insights from billions of data points across the web, presented in interactive survey format.
95
+ </p>
96
+ </div>
97
+ </div>
98
+ </header>
99
+
100
+ <!-- Main Content -->
101
+ <main class="container mx-auto px-4 py-12 -mt-10">
102
+ <!-- Survey Container -->
103
+ <div class="bg-white rounded-xl shadow-xl overflow-hidden max-w-4xl mx-auto">
104
+ <!-- Progress Bar -->
105
+ <div class="px-6 pt-6">
106
+ <div class="flex justify-between items-center mb-2">
107
+ <span class="text-sm font-medium text-gray-600">Question 3 of 10</span>
108
+ <span class="text-sm font-medium text-indigo-600">30% Complete</span>
109
+ </div>
110
+ <div class="progress-bar">
111
+ <div class="progress-fill" style="width: 30%"></div>
112
+ </div>
113
+ </div>
114
+
115
+ <!-- Current Question -->
116
+ <div class="p-6">
117
+ <h3 class="text-2xl font-semibold mb-6">Based on global internet trends, which of these technologies do you believe will have the most significant impact in the next 5 years?</h3>
118
+
119
+ <!-- AI Generated Context -->
120
+ <div class="bg-blue-50 border border-blue-100 rounded-lg p-4 mb-6">
121
+ <div class="flex items-start">
122
+ <div class="flex-shrink-0 mt-1">
123
+ <i class="fas fa-robot text-blue-500"></i>
124
+ </div>
125
+ <div class="ml-3">
126
+ <p class="text-sm text-blue-700">
127
+ <span class="font-medium">AI Insight:</span> Our analysis of 2.3M articles and research papers shows AI and Quantum Computing are currently the most discussed emerging technologies, with AI receiving 58% more mentions in Q2 2023 compared to Q1.
128
+ </p>
129
+ </div>
130
+ </div>
131
+ </div>
132
+
133
+ <!-- Options -->
134
+ <div class="space-y-4">
135
+ <div class="option-item p-4 border rounded-lg cursor-pointer transition hover:bg-gray-50 option-selected">
136
+ <div class="flex items-center">
137
+ <div class="flex-shrink-0 h-5 w-5 rounded-full border-2 border-indigo-500 flex items-center justify-center mr-3">
138
+ <div class="h-2 w-2 rounded-full bg-indigo-500"></div>
139
+ </div>
140
+ <div>
141
+ <p class="font-medium">Artificial Intelligence & Machine Learning</p>
142
+ <p class="text-sm text-gray-500 mt-1">Selected by 42% of respondents</p>
143
+ </div>
144
+ </div>
145
+ </div>
146
+
147
+ <div class="option-item p-4 border rounded-lg cursor-pointer transition hover:bg-gray-50">
148
+ <div class="flex items-center">
149
+ <div class="flex-shrink-0 h-5 w-5 rounded-full border-2 border-gray-300 flex items-center justify-center mr-3"></div>
150
+ <div>
151
+ <p class="font-medium">Quantum Computing</p>
152
+ <p class="text-sm text-gray-500 mt-1">Selected by 28% of respondents</p>
153
+ </div>
154
+ </div>
155
+ </div>
156
+
157
+ <div class="option-item p-4 border rounded-lg cursor-pointer transition hover:bg-gray-50">
158
+ <div class="flex items-center">
159
+ <div class="flex-shrink-0 h-5 w-5 rounded-full border-2 border-gray-300 flex items-center justify-center mr-3"></div>
160
+ <div>
161
+ <p class="font-medium">Extended Reality (AR/VR/MR)</p>
162
+ <p class="text-sm text-gray-500 mt-1">Selected by 15% of respondents</p>
163
+ </div>
164
+ </div>
165
+ </div>
166
+
167
+ <div class="option-item p-4 border rounded-lg cursor-pointer transition hover:bg-gray-50">
168
+ <div class="flex items-center">
169
+ <div class="flex-shrink-0 h-5 w-5 rounded-full border-2 border-gray-300 flex items-center justify-center mr-3"></div>
170
+ <div>
171
+ <p class="font-medium">Biotechnology & Genetic Engineering</p>
172
+ <p class="text-sm text-gray-500 mt-1">Selected by 10% of respondents</p>
173
+ </div>
174
+ </div>
175
+ </div>
176
+
177
+ <div class="option-item p-4 border rounded-lg cursor-pointer transition hover:bg-gray-50">
178
+ <div class="flex items-center">
179
+ <div class="flex-shrink-0 h-5 w-5 rounded-full border-2 border-gray-300 flex items-center justify-center mr-3"></div>
180
+ <div>
181
+ <p class="font-medium">Other (please specify)</p>
182
+ </div>
183
+ </div>
184
+ </div>
185
+ </div>
186
+
187
+ <!-- Navigation -->
188
+ <div class="flex justify-between mt-8">
189
+ <button class="px-6 py-2 border rounded-lg text-gray-600 hover:bg-gray-50 transition">
190
+ <i class="fas fa-arrow-left mr-2"></i> Previous
191
+ </button>
192
+ <button class="px-6 py-2 bg-indigo-600 text-white rounded-lg hover:bg-indigo-700 transition flex items-center">
193
+ Next <i class="fas fa-arrow-right ml-2"></i>
194
+ </button>
195
+ </div>
196
+ </div>
197
+ </div>
198
+
199
+ <!-- Data Visualization Section -->
200
+ <div class="mt-16">
201
+ <h3 class="text-2xl font-semibold mb-6 text-center">How Our AI Gathers Insights</h3>
202
+
203
+ <div class="grid grid-cols-1 md:grid-cols-3 gap-6 max-w-5xl mx-auto">
204
+ <div class="bg-white p-6 rounded-xl shadow-md survey-card">
205
+ <div class="text-indigo-500 mb-4">
206
+ <i class="fas fa-globe text-3xl"></i>
207
+ </div>
208
+ <h4 class="font-semibold text-lg mb-2">Web Crawling</h4>
209
+ <p class="text-gray-600">Our AI scans millions of websites daily, analyzing content from news articles, research papers, and forums to identify emerging trends.</p>
210
+ </div>
211
+
212
+ <div class="bg-white p-6 rounded-xl shadow-md survey-card">
213
+ <div class="text-indigo-500 mb-4">
214
+ <i class="fas fa-chart-line text-3xl"></i>
215
+ </div>
216
+ <h4 class="font-semibold text-lg mb-2">Sentiment Analysis</h4>
217
+ <p class="text-gray-600">Natural language processing evaluates public sentiment and discourse patterns across social media and comment sections.</p>
218
+ </div>
219
+
220
+ <div class="bg-white p-6 rounded-xl shadow-md survey-card">
221
+ <div class="text-indigo-500 mb-4">
222
+ <i class="fas fa-project-diagram text-3xl"></i>
223
+ </div>
224
+ <h4 class="font-semibold text-lg mb-2">Pattern Recognition</h4>
225
+ <p class="text-gray-600">Machine learning algorithms detect correlations and emerging patterns across disparate data sources to predict future trends.</p>
226
+ </div>
227
+ </div>
228
+
229
+ <div class="mt-12 bg-white rounded-xl shadow-md overflow-hidden max-w-4xl mx-auto">
230
+ <div class="p-6">
231
+ <h4 class="font-semibold text-lg mb-4">Current Technology Impact Analysis</h4>
232
+ <div class="data-visualization p-4 flex items-end space-x-2">
233
+ <div class="bg-indigo-500 w-full h-3/4 rounded-t flex items-end">
234
+ <div class="bg-indigo-300 w-full h-1/2 rounded-t"></div>
235
+ </div>
236
+ <div class="bg-purple-500 w-full h-1/2 rounded-t"></div>
237
+ <div class="bg-blue-400 w-full h-1/3 rounded-t"></div>
238
+ <div class="bg-green-400 w-full h-1/4 rounded-t"></div>
239
+ <div class="bg-yellow-400 w-full h-1/6 rounded-t"></div>
240
+ </div>
241
+ <div class="grid grid-cols-5 gap-4 mt-4 text-center text-sm">
242
+ <div>AI/ML</div>
243
+ <div>Quantum</div>
244
+ <div>XR</div>
245
+ <div>BioTech</div>
246
+ <div>Other</div>
247
+ </div>
248
+ </div>
249
+ </div>
250
+ </div>
251
+
252
+ <!-- Call to Action -->
253
+ <div class="mt-16 gradient-bg rounded-xl p-8 text-white text-center max-w-4xl mx-auto pulse-animation">
254
+ <h3 class="text-2xl font-semibold mb-4">Ready to uncover insights from the world's knowledge?</h3>
255
+ <p class="mb-6 max-w-2xl mx-auto">Join thousands of researchers, analysts, and curious minds leveraging NexusAI's internet intelligence platform.</p>
256
+ <button class="px-8 py-3 bg-white text-indigo-600 rounded-lg font-medium hover:bg-opacity-90 transition">
257
+ Start Your Free Trial <i class="fas fa-arrow-right ml-2"></i>
258
+ </button>
259
+ </div>
260
+ </main>
261
+
262
+ <!-- Footer -->
263
+ <footer class="bg-gray-900 text-white py-12">
264
+ <div class="container mx-auto px-4">
265
+ <div class="grid grid-cols-1 md:grid-cols-4 gap-8">
266
+ <div>
267
+ <div class="flex items-center space-x-2 mb-4">
268
+ <i class="fas fa-brain text-2xl text-indigo-400"></i>
269
+ <h4 class="text-xl font-bold">Nexus<span class="font-light">AI</span></h4>
270
+ </div>
271
+ <p class="text-gray-400">Harnessing the power of artificial intelligence to surface insights from the global knowledge base.</p>
272
+ </div>
273
+ <div>
274
+ <h5 class="font-semibold text-lg mb-4">Product</h5>
275
+ <ul class="space-y-2">
276
+ <li><a href="#" class="text-gray-400 hover:text-white transition">Features</a></li>
277
+ <li><a href="#" class="text-gray-400 hover:text-white transition">Pricing</a></li>
278
+ <li><a href="#" class="text-gray-400 hover:text-white transition">API</a></li>
279
+ <li><a href="#" class="text-gray-400 hover:text-white transition">Integrations</a></li>
280
+ </ul>
281
+ </div>
282
+ <div>
283
+ <h5 class="font-semibold text-lg mb-4">Resources</h5>
284
+ <ul class="space-y-2">
285
+ <li><a href="#" class="text-gray-400 hover:text-white transition">Documentation</a></li>
286
+ <li><a href="#" class="text-gray-400 hover:text-white transition">Case Studies</a></li>
287
+ <li><a href="#" class="text-gray-400 hover:text-white transition">Blog</a></li>
288
+ <li><a href="#" class="text-gray-400 hover:text-white transition">Webinars</a></li>
289
+ </ul>
290
+ </div>
291
+ <div>
292
+ <h5 class="font-semibold text-lg mb-4">Company</h5>
293
+ <ul class="space-y-2">
294
+ <li><a href="#" class="text-gray-400 hover:text-white transition">About</a></li>
295
+ <li><a href="#" class="text-gray-400 hover:text-white transition">Careers</a></li>
296
+ <li><a href="#" class="text-gray-400 hover:text-white transition">Privacy</a></li>
297
+ <li><a href="#" class="text-gray-400 hover:text-white transition">Terms</a></li>
298
+ </ul>
299
+ </div>
300
+ </div>
301
+ <div class="border-t border-gray-800 mt-8 pt-8 flex flex-col md:flex-row justify-between items-center">
302
+ <p class="text-gray-400 mb-4 md:mb-0">© 2023 NexusAI. All rights reserved.</p>
303
+ <div class="flex space-x-6">
304
+ <a href="#" class="text-gray-400 hover:text-white transition"><i class="fab fa-twitter"></i></a>
305
+ <a href="#" class="text-gray-400 hover:text-white transition"><i class="fab fa-linkedin"></i></a>
306
+ <a href="#" class="text-gray-400 hover:text-white transition"><i class="fab fa-github"></i></a>
307
+ <a href="#" class="text-gray-400 hover:text-white transition"><i class="fab fa-youtube"></i></a>
308
+ </div>
309
+ </div>
310
+ </div>
311
+ </footer>
312
+ </div>
313
+
314
+ <script>
315
+ // Interactive survey functionality
316
+ document.addEventListener('DOMContentLoaded', function() {
317
+ const optionItems = document.querySelectorAll('.option-item');
318
+
319
+ optionItems.forEach(item => {
320
+ item.addEventListener('click', function() {
321
+ // Remove selected class from all options
322
+ optionItems.forEach(opt => {
323
+ opt.classList.remove('option-selected');
324
+ const radio = opt.querySelector('.flex-shrink-0');
325
+ radio.innerHTML = '';
326
+ radio.classList.remove('border-indigo-500');
327
+ radio.classList.add('border-gray-300');
328
+ });
329
+
330
+ // Add selected class to clicked option
331
+ this.classList.add('option-selected');
332
+ const radio = this.querySelector('.flex-shrink-0');
333
+ radio.innerHTML = '<div class="h-2 w-2 rounded-full bg-indigo-500"></div>';
334
+ radio.classList.remove('border-gray-300');
335
+ radio.classList.add('border-indigo-500');
336
+ });
337
+ });
338
+
339
+ // Simulate data loading animation
340
+ setTimeout(() => {
341
+ const visualization = document.querySelector('.data-visualization');
342
+ visualization.classList.add('opacity-100');
343
+ }, 500);
344
+ });
345
+ </script>
346
+ <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=DestroXyz/tangent-data-base" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
347
+ </html>
prompts.txt ADDED
@@ -0,0 +1 @@
 
 
1
+ Faça uma plataforma de IA que apresenta dados em formato de inquérito com base em dados coletados de toda a internet.