privateuserh commited on
Commit
8ef7cd2
·
verified ·
1 Parent(s): 807b976

Add 2 files

Browse files
Files changed (2) hide show
  1. README.md +7 -5
  2. index.html +365 -19
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Privsmia Vbeta
3
- emoji: 🐨
4
- colorFrom: green
5
- colorTo: purple
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: privsmia-vbeta
3
+ emoji: 🐳
4
+ colorFrom: yellow
5
+ colorTo: red
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,365 @@
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>Social Media Intelligence A (Agency)</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
+ .floating-btn {
11
+ position: fixed;
12
+ bottom: 30px;
13
+ right: 30px;
14
+ z-index: 100;
15
+ box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
16
+ transition: all 0.3s ease;
17
+ }
18
+ .floating-btn:hover {
19
+ transform: translateY(-5px) scale(1.05);
20
+ box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
21
+ }
22
+ .modal-overlay {
23
+ position: fixed;
24
+ top: 0;
25
+ left: 0;
26
+ right: 0;
27
+ bottom: 0;
28
+ background-color: rgba(0, 0, 0, 0.7);
29
+ z-index: 1000;
30
+ display: flex;
31
+ justify-content: center;
32
+ align-items: center;
33
+ opacity: 0;
34
+ visibility: hidden;
35
+ transition: all 0.3s ease;
36
+ }
37
+ .modal-overlay.active {
38
+ opacity: 1;
39
+ visibility: visible;
40
+ }
41
+ .modal-content {
42
+ transform: translateY(-50px);
43
+ transition: all 0.3s ease;
44
+ }
45
+ .modal-overlay.active .modal-content {
46
+ transform: translateY(0);
47
+ }
48
+ .gradient-bg {
49
+ background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
50
+ }
51
+ .benefits-panel {
52
+ position: fixed;
53
+ bottom: 100px;
54
+ right: 30px;
55
+ width: 300px;
56
+ background: white;
57
+ border-radius: 15px;
58
+ box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
59
+ padding: 20px;
60
+ z-index: 99;
61
+ transform: translateY(20px);
62
+ opacity: 0;
63
+ visibility: hidden;
64
+ transition: all 0.3s ease;
65
+ }
66
+ .benefits-panel.active {
67
+ transform: translateY(0);
68
+ opacity: 1;
69
+ visibility: visible;
70
+ }
71
+ .benefits-panel:after {
72
+ content: '';
73
+ position: absolute;
74
+ bottom: -10px;
75
+ right: 40px;
76
+ width: 0;
77
+ height: 0;
78
+ border-left: 15px solid transparent;
79
+ border-right: 15px solid transparent;
80
+ border-top: 15px solid white;
81
+ }
82
+ .crypto-icons {
83
+ display: inline-flex;
84
+ align-items: center;
85
+ gap: 8px;
86
+ margin-left: 5px;
87
+ }
88
+ .crypto-icon {
89
+ width: 20px;
90
+ height: 20px;
91
+ border-radius: 50%;
92
+ display: flex;
93
+ align-items: center;
94
+ justify-content: center;
95
+ font-size: 12px;
96
+ background: #f7931a;
97
+ color: white;
98
+ }
99
+ .crypto-icon.btc {
100
+ background: #f7931a;
101
+ }
102
+ .crypto-icon.bch {
103
+ background: #0ac18e;
104
+ }
105
+ .crypto-icon.fbtc {
106
+ background: #6f42c1;
107
+ }
108
+ </style>
109
+ </head>
110
+ <body class="bg-gray-50 font-sans">
111
+ <!-- Navigation -->
112
+ <nav class="gradient-bg text-white shadow-lg">
113
+ <div class="container mx-auto px-6 py-4">
114
+ <div class="flex justify-between items-center">
115
+ <div class="flex items-center space-x-4">
116
+ <i class="fas fa-brain text-2xl"></i>
117
+ <span class="font-bold text-xl">Social Media Intelligence A</span>
118
+ </div>
119
+ <div class="hidden md:flex items-center space-x-8">
120
+ <a href="#" class="hover:text-gray-200">Home</a>
121
+ <a href="#" class="hover:text-gray-200">About</a>
122
+ <a href="#" class="hover:text-gray-200">Resources</a>
123
+ <a href="#" class="hover:text-gray-200">Community</a>
124
+ </div>
125
+ <button id="openSignup" class="bg-white text-indigo-700 px-4 py-2 rounded-full font-medium hover:bg-gray-100 transition">
126
+ Join Us
127
+ </button>
128
+ </div>
129
+ </div>
130
+ </nav>
131
+
132
+ <!-- Hero Section -->
133
+ <section class="gradient-bg text-white py-20">
134
+ <div class="container mx-auto px-6 text-center">
135
+ <h1 class="text-4xl md:text-6xl font-bold mb-6">Next-Gen Influencer Agency</h1>
136
+ <p class="text-xl md:text-2xl mb-10 max-w-3xl mx-auto">
137
+ The premier autonomous collective for digital creators. Harness AI, crypto, and collective bargaining for your success.
138
+ </p>
139
+ <div class="flex flex-col md:flex-row justify-center gap-4">
140
+ <button id="openSignupHero" class="bg-white text-indigo-700 px-8 py-4 rounded-full font-bold text-lg hover:bg-gray-100 transition transform hover:scale-105">
141
+ Join the Movement
142
+ </button>
143
+ <button class="border-2 border-white text-white px-8 py-4 rounded-full font-bold text-lg hover:bg-white hover:bg-opacity-10 transition transform hover:scale-105">
144
+ Learn More
145
+ </button>
146
+ </div>
147
+ </div>
148
+ </section>
149
+
150
+ <!-- Features Section -->
151
+ <section class="py-20 bg-white">
152
+ <div class="container mx-auto px-6">
153
+ <h2 class="text-3xl font-bold text-center text-gray-800 mb-16">Why Choose Intelligence A?</h2>
154
+ <div class="grid md:grid-cols-3 gap-10">
155
+ <div class="bg-gray-50 p-8 rounded-xl hover:shadow-xl transition">
156
+ <div class="text-indigo-600 mb-4">
157
+ <i class="fas fa-robot text-4xl"></i>
158
+ </div>
159
+ <h3 class="text-xl font-bold mb-3">AI Avatar Technology</h3>
160
+ <p class="text-gray-600">License your digital likeness for commercials, films, and virtual appearances without being physically present.</p>
161
+ </div>
162
+ <div class="bg-gray-50 p-8 rounded-xl hover:shadow-xl transition">
163
+ <div class="text-indigo-600 mb-4">
164
+ <i class="fas fa-coins text-4xl"></i>
165
+ </div>
166
+ <h3 class="text-xl font-bold mb-3">Crypto Payments</h3>
167
+ <p class="text-gray-600">Receive payments in Fractal Bitcoin, Bitcoin, or Bitcoin Cash for borderless, fast transactions with lower fees.</p>
168
+ </div>
169
+ <div class="bg-gray-50 p-8 rounded-xl hover:shadow-xl transition">
170
+ <div class="text-indigo-600 mb-4">
171
+ <i class="fas fa-shield-alt text-4xl"></i>
172
+ </div>
173
+ <h3 class="text-xl font-bold mb-3">Legal Protection</h3>
174
+ <p class="text-gray-600">Access to legal resources and collective defense against platform changes, copyright issues, and contract disputes.</p>
175
+ </div>
176
+ </div>
177
+ </div>
178
+ </section>
179
+
180
+ <!-- Testimonials -->
181
+ <section class="py-20 bg-gray-50">
182
+ <div class="container mx-auto px-6">
183
+ <h2 class="text-3xl font-bold text-center text-gray-800 mb-16">What Our Members Say</h2>
184
+ <div class="grid md:grid-cols-2 gap-10 max-w-4xl mx-auto">
185
+ <div class="bg-white p-8 rounded-xl shadow-md">
186
+ <div class="flex items-center mb-4">
187
+ <img src="https://randomuser.me/api/portraits/women/44.jpg" alt="Member" class="w-12 h-12 rounded-full mr-4">
188
+ <div>
189
+ <h4 class="font-bold">Sarah K.</h4>
190
+ <p class="text-gray-500 text-sm">Lifestyle Influencer</p>
191
+ </div>
192
+ </div>
193
+ <p class="text-gray-700 italic">"The AI avatar feature has allowed me to appear in international campaigns without travel. It's revolutionized my business model."</p>
194
+ </div>
195
+ <div class="bg-white p-8 rounded-xl shadow-md">
196
+ <div class="flex items-center mb-4">
197
+ <img src="https://randomuser.me/api/portraits/men/32.jpg" alt="Member" class="w-12 h-12 rounded-full mr-4">
198
+ <div>
199
+ <h4 class="font-bold">Jamal R.</h4>
200
+ <p class="text-gray-500 text-sm">Tech Reviewer</p>
201
+ </div>
202
+ </div>
203
+ <p class="text-gray-700 italic">"Getting paid in crypto means I can work with international brands without worrying about currency conversions or bank delays."</p>
204
+ </div>
205
+ </div>
206
+ </div>
207
+ </section>
208
+
209
+ <!-- Signup Modal -->
210
+ <div id="signupModal" class="modal-overlay">
211
+ <div class="modal-content bg-white rounded-xl w-full max-w-md mx-4">
212
+ <div class="p-8">
213
+ <div class="flex justify-between items-center mb-6">
214
+ <h3 class="text-2xl font-bold text-gray-800">Join Intelligence A</h3>
215
+ <button id="closeSignup" class="text-gray-500 hover:text-gray-700">
216
+ <i class="fas fa-times"></i>
217
+ </button>
218
+ </div>
219
+ <form id="signupForm" class="space-y-4">
220
+ <div>
221
+ <label for="name" class="block text-sm font-medium text-gray-700 mb-1">Full Name</label>
222
+ <input type="text" id="name" class="w-full px-4 py-2 border border-gray-300 rounded-lg focus:ring-2 focus:ring-indigo-500 focus:border-indigo-500">
223
+ </div>
224
+ <div>
225
+ <label for="email" class="block text-sm font-medium text-gray-700 mb-1">Email</label>
226
+ <input type="email" id="email" class="w-full px-4 py-2 border border-gray-300 rounded-lg focus:ring-2 focus:ring-indigo-500 focus:border-indigo-500">
227
+ </div>
228
+ <div>
229
+ <label for="platform" class="block text-sm font-medium text-gray-700 mb-1">Main Platform</label>
230
+ <select id="platform" class="w-full px-4 py-2 border border-gray-300 rounded-lg focus:ring-2 focus:ring-indigo-500 focus:border-indigo-500">
231
+ <option value="">Select your platform</option>
232
+ <option value="instagram">Instagram</option>
233
+ <option value="youtube">YouTube</option>
234
+ <option value="tiktok">TikTok</option>
235
+ <option value="twitter">Twitter</option>
236
+ <option value="other">Other</option>
237
+ </select>
238
+ </div>
239
+ <div>
240
+ <label for="followers" class="block text-sm font-medium text-gray-700 mb-1">Approx. Follower Count</label>
241
+ <input type="number" id="followers" class="w-full px-4 py-2 border border-gray-300 rounded-lg focus:ring-2 focus:ring-indigo-500 focus:border-indigo-500">
242
+ </div>
243
+ <div class="pt-2">
244
+ <button type="submit" class="w-full gradient-bg text-white px-6 py-3 rounded-lg font-bold hover:opacity-90 transition">
245
+ Apply for Membership
246
+ </button>
247
+ </div>
248
+ </form>
249
+ <div class="mt-6 text-center text-sm text-gray-500">
250
+ By joining, you agree to our <a href="#" class="text-indigo-600 hover:underline">Terms</a> and <a href="#" class="text-indigo-600 hover:underline">Privacy Policy</a>
251
+ </div>
252
+ </div>
253
+ </div>
254
+ </div>
255
+
256
+ <!-- Floating Benefits Button -->
257
+ <button id="benefitsBtn" class="floating-btn bg-indigo-600 text-white w-16 h-16 rounded-full flex items-center justify-center">
258
+ <i class="fas fa-star text-2xl"></i>
259
+ </button>
260
+
261
+ <!-- Benefits Panel -->
262
+ <div id="benefitsPanel" class="benefits-panel">
263
+ <h4 class="font-bold text-lg mb-4 text-indigo-700">Member Benefits</h4>
264
+ <ul class="space-y-3">
265
+ <li class="flex items-start">
266
+ <i class="fas fa-check-circle text-green-500 mt-1 mr-2"></i>
267
+ <span>Collective bargaining with brands</span>
268
+ </li>
269
+ <li class="flex items-start">
270
+ <i class="fas fa-check-circle text-green-500 mt-1 mr-2"></i>
271
+ <span>Legal support and contract review</span>
272
+ </li>
273
+ <li class="flex items-start">
274
+ <i class="fas fa-check-circle text-green-500 mt-1 mr-2"></i>
275
+ <span>AI Avatar for digital appearances</span>
276
+ </li>
277
+ <li class="flex items-start">
278
+ <i class="fas fa-check-circle text-green-500 mt-1 mr-2"></i>
279
+ <span>Crypto payouts
280
+ <span class="crypto-icons">
281
+ <span class="crypto-icon fbtc" title="Fractal Bitcoin">FB</span>
282
+ <span class="crypto-icon btc" title="Bitcoin">₿</span>
283
+ <span class="crypto-icon bch" title="Bitcoin Cash">BCH</span>
284
+ </span>
285
+ </span>
286
+ </li>
287
+ <li class="flex items-start">
288
+ <i class="fas fa-check-circle text-green-500 mt-1 mr-2"></i>
289
+ <span>Exclusive networking events</span>
290
+ </li>
291
+ <li class="flex items-start">
292
+ <i class="fas fa-check-circle text-green-500 mt-1 mr-2"></i>
293
+ <span>Platform change early warnings</span>
294
+ </li>
295
+ <li class="flex items-start">
296
+ <i class="fas fa-check-circle text-green-500 mt-1 mr-2"></i>
297
+ <span>Health insurance partnerships</span>
298
+ </li>
299
+ </ul>
300
+ <div class="mt-6 text-center">
301
+ <button id="openSignupFromBenefits" class="text-sm gradient-bg text-white px-4 py-2 rounded-full font-medium">
302
+ Join to Access All Benefits
303
+ </button>
304
+ </div>
305
+ </div>
306
+
307
+ <script>
308
+ // Modal functionality
309
+ const openSignup = document.getElementById('openSignup');
310
+ const openSignupHero = document.getElementById('openSignupHero');
311
+ const openSignupFromBenefits = document.getElementById('openSignupFromBenefits');
312
+ const closeSignup = document.getElementById('closeSignup');
313
+ const signupModal = document.getElementById('signupModal');
314
+ const signupForm = document.getElementById('signupForm');
315
+
316
+ // Benefits panel functionality
317
+ const benefitsBtn = document.getElementById('benefitsBtn');
318
+ const benefitsPanel = document.getElementById('benefitsPanel');
319
+
320
+ // Open modal from various buttons
321
+ [openSignup, openSignupHero, openSignupFromBenefits].forEach(btn => {
322
+ btn.addEventListener('click', () => {
323
+ signupModal.classList.add('active');
324
+ document.body.style.overflow = 'hidden';
325
+ });
326
+ });
327
+
328
+ // Close modal
329
+ closeSignup.addEventListener('click', () => {
330
+ signupModal.classList.remove('active');
331
+ document.body.style.overflow = 'auto';
332
+ });
333
+
334
+ // Form submission
335
+ signupForm.addEventListener('submit', (e) => {
336
+ e.preventDefault();
337
+ // Here you would normally send the form data to your backend
338
+ alert('Application submitted! We will review your information and get back to you soon.');
339
+ signupModal.classList.remove('active');
340
+ document.body.style.overflow = 'auto';
341
+ signupForm.reset();
342
+ });
343
+
344
+ // Toggle benefits panel
345
+ benefitsBtn.addEventListener('click', () => {
346
+ benefitsPanel.classList.toggle('active');
347
+ });
348
+
349
+ // Close benefits panel when clicking outside
350
+ document.addEventListener('click', (e) => {
351
+ if (!benefitsPanel.contains(e.target) && e.target !== benefitsBtn) {
352
+ benefitsPanel.classList.remove('active');
353
+ }
354
+ });
355
+
356
+ // Close modal when clicking on overlay
357
+ signupModal.addEventListener('click', (e) => {
358
+ if (e.target === signupModal) {
359
+ signupModal.classList.remove('active');
360
+ document.body.style.overflow = 'auto';
361
+ }
362
+ });
363
+ </script>
364
+ <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=privateuserh/privsmia-vbeta" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
365
+ </html>