Spaces:
Running
Running
File size: 22,695 Bytes
8ef7cd2 028610c 8ef7cd2 9b388a9 8ef7cd2 9b388a9 8ef7cd2 028610c 8ef7cd2 9b388a9 8ef7cd2 9b388a9 8ef7cd2 3af0ac4 8ef7cd2 3af0ac4 8ef7cd2 9b388a9 8ef7cd2 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Social Media Intelligence A (Agency) SMIA</title>
<script src="https://cdn.tailwindcss.com"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<script src="https://cdn.jsdelivr.net/npm/chart.js"></script>
<style>
.floating-btn {
position: fixed;
bottom: 30px;
right: 30px;
z-index: 100;
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
transition: all 0.3s ease;
}
.floating-btn:hover {
transform: translateY(-5px) scale(1.05);
box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}
.modal-overlay {
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: rgba(0, 0, 0, 0.7);
z-index: 1000;
display: flex;
justify-content: center;
align-items: center;
opacity: 0;
visibility: hidden;
transition: all 0.3s ease;
}
.modal-overlay.active {
opacity: 1;
visibility: visible;
}
.modal-content {
transform: translateY(-50px);
transition: all 0.3s ease;
}
.modal-overlay.active .modal-content {
transform: translateY(0);
}
.gradient-bg {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}
.benefits-panel {
position: fixed;
bottom: 100px;
right: 30px;
width: 300px;
background: white;
border-radius: 15px;
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
padding: 20px;
z-index: 99;
transform: translateY(20px);
opacity: 0;
visibility: hidden;
transition: all 0.3s ease;
}
.benefits-panel.active {
transform: translateY(0);
opacity: 1;
visibility: visible;
}
.benefits-panel:after {
content: '';
position: absolute;
bottom: -10px;
right: 40px;
width: 0;
height: 0;
border-left: 15px solid transparent;
border-right: 15px solid transparent;
border-top: 15px solid white;
}
.crypto-icons {
display: inline-flex;
align-items: center;
gap: 8px;
margin-left: 5px;
}
.crypto-icon {
width: 20px;
height: 20px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 12px;
background: #f7931a;
color: white;
}
.crypto-icon.btc {
background: #f7931a;
}
.crypto-icon.bch {
background: #0ac18e;
}
.crypto-icon.fbtc {
background: #6f42c1;
}
.chart-container {
position: relative;
height: 400px;
width: 100%;
}
.platform-tag {
display: inline-flex;
align-items: center;
background: rgba(102, 126, 234, 0.1);
color: #667eea;
padding: 4px 12px;
border-radius: 20px;
font-size: 14px;
margin-right: 8px;
margin-bottom: 8px;
}
.platform-tag i {
margin-right: 6px;
}
</style>
</head>
<body class="bg-gray-50 font-sans">
<!-- Navigation -->
<nav class="gradient-bg text-white shadow-lg">
<div class="container mx-auto px-6 py-4">
<div class="flex justify-between items-center">
<div class="flex items-center space-x-4">
<i class="fas fa-brain text-2xl"></i>
<span class="font-bold text-xl">Social Media Intelligence A {SMIA}</span>
</div>
<div class="hidden md:flex items-center space-x-8">
<a href="#" class="hover:text-gray-200">Home</a>
<a href="#" class="hover:text-gray-200">About</a>
<a href="#" class="hover:text-gray-200">Resources</a>
<a href="#" class="hover:text-gray-200">Community</a>
</div>
<button id="openSignup" class="bg-white text-indigo-700 px-4 py-2 rounded-full font-medium hover:bg-gray-100 transition">
Join Us
</button>
</div>
</div>
</nav>
<!-- Hero Section -->
<section class="gradient-bg text-white py-20">
<div class="container mx-auto px-6 text-center">
<h1 class="text-4xl md:text-6xl font-bold mb-6">Next-Gen Influencer Agency</h1>
<p class="text-xl md:text-2xl mb-10 max-w-3xl mx-auto">
The premier autonomous collective for digital creators. Harness AI, crypto, and collective bargaining for your success.
</p>
<div class="flex flex-col md:flex-row justify-center gap-4">
<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">
Join the Movement
</button>
<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">
Learn More
</button>
</div>
</div>
</section>
<!-- Features Section -->
<section class="py-20 bg-white">
<div class="container mx-auto px-6">
<h2 class="text-3xl font-bold text-center text-gray-800 mb-16">Why Choose Intelligence A?</h2>
<div class="grid md:grid-cols-3 gap-10">
<div class="bg-gray-50 p-8 rounded-xl hover:shadow-xl transition">
<div class="text-indigo-600 mb-4">
<i class="fas fa-robot text-4xl"></i>
</div>
<h3 class="text-xl font-bold mb-3">AI Avatar Technology</h3>
<p class="text-gray-600">License your digital likeness for commercials, films, and virtual appearances without being physically present.</p>
</div>
<div class="bg-gray-50 p-8 rounded-xl hover:shadow-xl transition">
<div class="text-indigo-600 mb-4">
<i class="fas fa-coins text-4xl"></i>
</div>
<h3 class="text-xl font-bold mb-3">Crypto Payments</h3>
<p class="text-gray-600">Receive payments in Fractal Bitcoin, Bitcoin, or Bitcoin Cash for borderless, fast transactions with lower fees.</p>
</div>
<div class="bg-gray-50 p-8 rounded-xl hover:shadow-xl transition">
<div class="text-indigo-600 mb-4">
<i class="fas fa-shield-alt text-4xl"></i>
</div>
<h3 class="text-xl font-bold mb-3">Legal Protection</h3>
<p class="text-gray-600">Access to legal resources and collective defense against platform changes, copyright issues, and contract disputes.</p>
</div>
</div>
</div>
</section>
<!-- Market Size Section -->
<section class="py-20 bg-gray-50">
<div class="container mx-auto px-6">
<div class="flex flex-col md:flex-row items-center gap-10">
<div class="md:w-1/2">
<h2 class="text-3xl font-bold text-gray-800 mb-6">The Creator Economy Opportunity</h2>
<p class="text-gray-600 mb-6">
With over 50 million content creators worldwide, the potential for professional influencers is enormous.
Our agency focuses on the top 5% of creators who have the engagement and audience size to benefit from
our premium services.
</p>
<div class="mb-6">
<h3 class="font-bold text-lg mb-3">Platforms We Support:</h3>
<div class="flex flex-wrap">
<span class="platform-tag"><i class="fab fa-instagram"></i> Instagram</span>
<span class="platform-tag"><i class="fab fa-youtube"></i> YouTube</span>
<span class="platform-tag"><i class="fab fa-tiktok"></i> TikTok</span>
<span class="platform-tag"><i class="fab fa-twitter"></i> Twitter</span>
<span class="platform-tag"><i class="fab fa-twitch"></i> Twitch</span>
<span class="platform-tag"><i class="fab fa-snapchat"></i> Snapchat</span>
<span class="platform-tag"><i class="fab fa-pinterest"></i> Pinterest</span>
<span class="platform-tag"><i class="fab fa-linkedin"></i> LinkedIn</span>
</div>
</div>
<p class="text-gray-600">
Our data shows that approximately 2.5 million influencers meet our criteria for membership,
with thousands joining our network each month.
</p>
</div>
<div class="md:w-1/2">
<div class="bg-white p-6 rounded-xl shadow-md">
<div class="chart-container">
<canvas id="influencerChart"></canvas>
</div>
<div class="mt-4 text-center text-sm text-gray-500">
*Estimates based on 2023 global influencer market data
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Testimonials -->
<section class="py-20 bg-white">
<div class="container mx-auto px-6">
<h2 class="text-3xl font-bold text-center text-gray-800 mb-16">What Our Members Say</h2>
<div class="grid md:grid-cols-2 gap-10 max-w-4xl mx-auto">
<div class="bg-white p-8 rounded-xl shadow-md">
<div class="flex items-center mb-4">
<img src="https://randomuser.me/api/portraits/women/44.jpg" alt="Member" class="w-12 h-12 rounded-full mr-4">
<div>
<h4 class="font-bold">Sarah K.</h4>
<p class="text-gray-500 text-sm">Lifestyle Influencer</p>
</div>
</div>
<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>
</div>
<div class="bg-white p-8 rounded-xl shadow-md">
<div class="flex items-center mb-4">
<img src="https://randomuser.me/api/portraits/men/32.jpg" alt="Member" class="w-12 h-12 rounded-full mr-4">
<div>
<h4 class="font-bold">Jamal R.</h4>
<p class="text-gray-500 text-sm">Tech Reviewer</p>
</div>
</div>
<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>
</div>
</div>
</div>
</section>
<!-- Signup Modal -->
<div id="signupModal" class="modal-overlay">
<div class="modal-content bg-white rounded-xl w-full max-w-md mx-4">
<div class="p-8">
<div class="flex justify-between items-center mb-6">
<h3 class="text-2xl font-bold text-gray-800">Join Intelligence A</h3>
<button id="closeSignup" class="text-gray-500 hover:text-gray-700">
<i class="fas fa-times"></i>
</button>
</div>
<form id="signupForm" class="space-y-4">
<div>
<label for="name" class="block text-sm font-medium text-gray-700 mb-1">Full Name</label>
<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">
</div>
<div>
<label for="email" class="block text-sm font-medium text-gray-700 mb-1">Email</label>
<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">
</div>
<div>
<label for="platform" class="block text-sm font-medium text-gray-700 mb-1">Main Platform</label>
<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">
<option value="">Select your platform</option>
<option value="instagram">Instagram</option>
<option value="youtube">YouTube</option>
<option value="tiktok">TikTok</option>
<option value="twitter">Twitter</option>
<option value="other">Other</option>
</select>
</div>
<div>
<label for="followers" class="block text-sm font-medium text-gray-700 mb-1">Approx. Follower Count</label>
<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">
</div>
<div class="pt-2">
<button type="submit" class="w-full gradient-bg text-white px-6 py-3 rounded-lg font-bold hover:opacity-90 transition">
Apply for Membership
</button>
</div>
</form>
<div class="mt-6 text-center text-sm text-gray-500">
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>
</div>
</div>
</div>
</div>
<!-- Floating Benefits Button -->
<button id="benefitsBtn" class="floating-btn bg-indigo-600 text-white w-16 h-16 rounded-full flex items-center justify-center">
<i class="fas fa-star text-2xl"></i>
</button>
<!-- Benefits Panel -->
<div id="benefitsPanel" class="benefits-panel">
<h4 class="font-bold text-lg mb-4 text-indigo-700">Member Benefits</h4>
<ul class="space-y-3">
<li class="flex items-start">
<i class="fas fa-check-circle text-green-500 mt-1 mr-2"></i>
<span>Collective bargaining with brands</span>
</li>
<li class="flex items-start">
<i class="fas fa-check-circle text-green-500 mt-1 mr-2"></i>
<span>Legal support and contract review</span>
</li>
<li class="flex items-start">
<i class="fas fa-check-circle text-green-500 mt-1 mr-2"></i>
<span>AI Avatar for digital appearances</span>
</li>
<li class="flex items-start">
<i class="fas fa-check-circle text-green-500 mt-1 mr-2"></i>
<span>Crypto payouts
<span class="crypto-icons">
<span class="crypto-icon fbtc" title="Fractal Bitcoin">FB</span>
<span class="crypto-icon btc" title="Bitcoin">₿</span>
<span class="crypto-icon bch" title="Bitcoin Cash">BCH</span>
</span>
</span>
</li>
<li class="flex items-start">
<i class="fas fa-check-circle text-green-500 mt-1 mr-2"></i>
<span>Exclusive networking events</span>
</li>
<li class="flex items-start">
<i class="fas fa-check-circle text-green-500 mt-1 mr-2"></i>
<span>Platform change early warnings</span>
</li>
<li class="flex items-start">
<i class="fas fa-check-circle text-green-500 mt-1 mr-2"></i>
<span>Health insurance partnerships</span>
</li>
</ul>
<div class="mt-6 text-center">
<button id="openSignupFromBenefits" class="text-sm gradient-bg text-white px-4 py-2 rounded-full font-medium">
Join to Access All Benefits
</button>
</div>
</div>
<script>
// Modal functionality
const openSignup = document.getElementById('openSignup');
const openSignupHero = document.getElementById('openSignupHero');
const openSignupFromBenefits = document.getElementById('openSignupFromBenefits');
const closeSignup = document.getElementById('closeSignup');
const signupModal = document.getElementById('signupModal');
const signupForm = document.getElementById('signupForm');
// Benefits panel functionality
const benefitsBtn = document.getElementById('benefitsBtn');
const benefitsPanel = document.getElementById('benefitsPanel');
// Open modal from various buttons
[openSignup, openSignupHero, openSignupFromBenefits].forEach(btn => {
btn.addEventListener('click', () => {
signupModal.classList.add('active');
document.body.style.overflow = 'hidden';
});
});
// Close modal
closeSignup.addEventListener('click', () => {
signupModal.classList.remove('active');
document.body.style.overflow = 'auto';
});
// Form submission
signupForm.addEventListener('submit', (e) => {
e.preventDefault();
// Here you would normally send the form data to your backend
alert('Application submitted! We will review your information and get back to you soon.');
signupModal.classList.remove('active');
document.body.style.overflow = 'auto';
signupForm.reset();
});
// Toggle benefits panel
benefitsBtn.addEventListener('click', () => {
benefitsPanel.classList.toggle('active');
});
// Close benefits panel when clicking outside
document.addEventListener('click', (e) => {
if (!benefitsPanel.contains(e.target) && e.target !== benefitsBtn) {
benefitsPanel.classList.remove('active');
}
});
// Close modal when clicking on overlay
signupModal.addEventListener('click', (e) => {
if (e.target === signupModal) {
signupModal.classList.remove('active');
document.body.style.overflow = 'auto';
}
});
// Influencer Market Chart
const ctx = document.getElementById('influencerChart').getContext('2d');
const influencerChart = new Chart(ctx, {
type: 'bar',
data: {
labels: ['Instagram', 'YouTube', 'TikTok', 'Twitter', 'Twitch', 'Other Platforms'],
datasets: [{
label: 'Eligible Influencers (in thousands)',
data: [1200, 600, 400, 150, 100, 50],
backgroundColor: [
'rgba(255, 99, 132, 0.7)',
'rgba(255, 159, 64, 0.7)',
'rgba(75, 192, 192, 0.7)',
'rgba(54, 162, 235, 0.7)',
'rgba(153, 102, 255, 0.7)',
'rgba(201, 203, 207, 0.7)'
],
borderColor: [
'rgba(255, 99, 132, 1)',
'rgba(255, 159, 64, 1)',
'rgba(75, 192, 192, 1)',
'rgba(54, 162, 235, 1)',
'rgba(153, 102, 255, 1)',
'rgba(201, 203, 207, 1)'
],
borderWidth: 1
}]
},
options: {
responsive: true,
maintainAspectRatio: false,
plugins: {
legend: {
position: 'top',
},
tooltip: {
callbacks: {
label: function(context) {
return context.dataset.label + ': ' + context.raw + ',000';
}
}
}
},
scales: {
y: {
beginAtZero: true,
ticks: {
callback: function(value) {
return value + 'k';
}
}
}
}
}
});
</script>
<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>
</html> |