Spaces:
Running
Running
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>Independent Influencers Union</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"> | |
<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; | |
} | |
</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-users text-2xl"></i> | |
<span class="font-bold text-xl">IndieInfluencers</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">Your Voice, Your Rules</h1> | |
<p class="text-xl md:text-2xl mb-10 max-w-3xl mx-auto"> | |
The first autonomous union for social media influencers. No parent organization. No unnecessary rules. Just pure collective power. | |
</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 Go Independent?</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-gem text-4xl"></i> | |
</div> | |
<h3 class="text-xl font-bold mb-3">Complete Autonomy</h3> | |
<p class="text-gray-600">Make decisions without answering to a larger bureaucratic structure. We're influencer-run and influencer-focused.</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-handshake text-4xl"></i> | |
</div> | |
<h3 class="text-xl font-bold mb-3">Better Deals</h3> | |
<p class="text-gray-600">Collective bargaining power means better rates, fairer contracts, and protection against exploitation.</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> | |
<!-- Testimonials --> | |
<section class="py-20 bg-gray-50"> | |
<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">"Before joining, I was constantly getting lowballed by brands. Now with the union's standard rate cards, I know my worth and get paid fairly."</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">"When a platform suddenly demonetized my content, the union's legal team helped me navigate the appeal process successfully. Worth every penny of membership."</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 IndieInfluencers</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>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'; | |
} | |
}); | |
</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" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body> | |
</html> |