|
|
<!DOCTYPE html> |
|
|
<html lang="en"> |
|
|
<head> |
|
|
<meta charset="UTF-8"> |
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0"> |
|
|
<title>SocialScraper Pro - Data Ninja Edition</title> |
|
|
<script src="https://cdn.tailwindcss.com"></script> |
|
|
<script src="https://unpkg.com/feather-icons"></script> |
|
|
<script src="https://cdn.jsdelivr.net/npm/vanta@latest/dist/vanta.net.min.js"></script> |
|
|
<style> |
|
|
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&display=swap'); |
|
|
|
|
|
body { |
|
|
font-family: 'Space Grotesk', sans-serif; |
|
|
overflow-x: hidden; |
|
|
} |
|
|
|
|
|
.vanta-bg { |
|
|
position: absolute; |
|
|
top: 0; |
|
|
left: 0; |
|
|
width: 100%; |
|
|
height: 100%; |
|
|
z-index: -1; |
|
|
} |
|
|
|
|
|
.glass-card { |
|
|
background: rgba(255, 255, 255, 0.1); |
|
|
backdrop-filter: blur(10px); |
|
|
-webkit-backdrop-filter: blur(10px); |
|
|
border: 1px solid rgba(255, 255, 255, 0.2); |
|
|
} |
|
|
|
|
|
.gradient-text { |
|
|
background: linear-gradient(90deg, #3b82f6, #8b5cf6); |
|
|
-webkit-background-clip: text; |
|
|
background-clip: text; |
|
|
color: transparent; |
|
|
} |
|
|
|
|
|
.pulse-animation { |
|
|
animation: pulse 2s infinite; |
|
|
} |
|
|
|
|
|
@keyframes pulse { |
|
|
0% { transform: scale(1); } |
|
|
50% { transform: scale(1.05); } |
|
|
100% { transform: scale(1); } |
|
|
} |
|
|
</style> |
|
|
</head> |
|
|
<body class="bg-gray-900 text-white"> |
|
|
<div id="vanta-bg" class="vanta-bg"></div> |
|
|
|
|
|
|
|
|
<nav class="container mx-auto px-6 py-4 flex justify-between items-center"> |
|
|
<div class="flex items-center space-x-2"> |
|
|
<i data-feather="activity" class="text-indigo-500"></i> |
|
|
<span class="text-xl font-bold gradient-text">SocialScraper Pro</span> |
|
|
</div> |
|
|
<div class="hidden md:flex space-x-8"> |
|
|
<a href="#" class="hover:text-indigo-400 transition">Features</a> |
|
|
<a href="#" class="hover:text-indigo-400 transition">Pricing</a> |
|
|
<a href="#" class="hover:text-indigo-400 transition">Documentation</a> |
|
|
<a href="#" class="hover:text-indigo-400 transition">Support</a> |
|
|
</div> |
|
|
<div class="flex items-center space-x-4"> |
|
|
<button class="px-4 py-2 rounded-full bg-indigo-600 hover:bg-indigo-700 transition"> |
|
|
Get Started |
|
|
</button> |
|
|
<button class="md:hidden"> |
|
|
<i data-feather="menu"></i> |
|
|
</button> |
|
|
</div> |
|
|
</nav> |
|
|
|
|
|
|
|
|
<section class="container mx-auto px-6 py-20 md:py-32"> |
|
|
<div class="flex flex-col md:flex-row items-center"> |
|
|
<div class="md:w-1/2 mb-12 md:mb-0"> |
|
|
<h1 class="text-4xl md:text-6xl font-bold mb-6"> |
|
|
<span class="gradient-text">Extract</span> Social Data <br> |
|
|
Like a <span class="gradient-text">Ninja</span> |
|
|
</h1> |
|
|
<p class="text-xl text-gray-300 mb-8"> |
|
|
The most powerful social media scraping tool for researchers, marketers, and data scientists. |
|
|
</p> |
|
|
<div class="flex flex-col sm:flex-row space-y-4 sm:space-y-0 sm:space-x-4"> |
|
|
<button class="px-8 py-3 rounded-full bg-indigo-600 hover:bg-indigo-700 transition flex items-center justify-center pulse-animation"> |
|
|
<i data-feather="download" class="mr-2"></i> |
|
|
Download Now |
|
|
</button> |
|
|
<button class="px-8 py-3 rounded-full bg-gray-800 hover:bg-gray-700 transition flex items-center justify-center"> |
|
|
<i data-feather="play" class="mr-2"></i> |
|
|
Watch Demo |
|
|
</button> |
|
|
</div> |
|
|
</div> |
|
|
<div class="md:w-1/2"> |
|
|
<div class="glass-card rounded-2xl p-2 shadow-2xl"> |
|
|
<div class="bg-gray-800 rounded-xl p-4"> |
|
|
<div class="flex space-x-2 mb-4"> |
|
|
<div class="w-3 h-3 rounded-full bg-red-500"></div> |
|
|
<div class="w-3 h-3 rounded-full bg-yellow-500"></div> |
|
|
<div class="w-3 h-3 rounded-full bg-green-500"></div> |
|
|
</div> |
|
|
<div class="bg-gray-900 rounded-lg p-4 font-mono text-sm overflow-x-auto"> |
|
|
<span class="text-green-400">$</span> socialscraper --platform twitter --query "#datascience" --limit 1000<br> |
|
|
<span class="text-gray-500">[INFO] Connecting to Twitter API...</span><br> |
|
|
<span class="text-gray-500">[INFO] Scraping 1000 posts...</span><br> |
|
|
<span class="text-green-500">[SUCCESS] Data saved to twitter_data.json</span> |
|
|
</div> |
|
|
</div> |
|
|
</div> |
|
|
</div> |
|
|
</div> |
|
|
</section> |
|
|
|
|
|
|
|
|
<section class="container mx-auto px-6 py-20"> |
|
|
<div class="text-center mb-16"> |
|
|
<h2 class="text-3xl md:text-4xl font-bold mb-4">Powerful Features</h2> |
|
|
<p class="text-xl text-gray-300 max-w-2xl mx-auto"> |
|
|
Everything you need to collect, analyze, and visualize social media data at scale. |
|
|
</p> |
|
|
</div> |
|
|
|
|
|
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8"> |
|
|
|
|
|
<div class="glass-card rounded-xl p-6 hover:shadow-lg transition"> |
|
|
<div class="w-12 h-12 rounded-full bg-indigo-500 flex items-center justify-center mb-4"> |
|
|
<i data-feather="globe" class="text-white"></i> |
|
|
</div> |
|
|
<h3 class="text-xl font-bold mb-2">Multi-Platform Support</h3> |
|
|
<p class="text-gray-300"> |
|
|
Collect data from Twitter, Instagram, Facebook, Reddit, and more with a single tool. |
|
|
</p> |
|
|
</div> |
|
|
|
|
|
|
|
|
<div class="glass-card rounded-xl p-6 hover:shadow-lg transition"> |
|
|
<div class="w-12 h-12 rounded-full bg-purple-500 flex items-center justify-center mb-4"> |
|
|
<i data-feather="cpu" class="text-white"></i> |
|
|
</div> |
|
|
<h3 class="text-xl font-bold mb-2">AI-Powered Analysis</h3> |
|
|
<p class="text-gray-300"> |
|
|
Built-in sentiment analysis, topic modeling, and trend detection. |
|
|
</p> |
|
|
</div> |
|
|
|
|
|
|
|
|
<div class="glass-card rounded-xl p-6 hover:shadow-lg transition"> |
|
|
<div class="w-12 h-12 rounded-full bg-blue-500 flex items-center justify-center mb-4"> |
|
|
<i data-feather="database" class="text-white"></i> |
|
|
</div> |
|
|
<h3 class="text-xl font-bold mb-2">Data Export</h3> |
|
|
<p class="text-gray-300"> |
|
|
Export to JSON, CSV, or directly to your database. |
|
|
</p> |
|
|
</div> |
|
|
|
|
|
|
|
|
<div class="glass-card rounded-xl p-6 hover:shadow-lg transition"> |
|
|
<div class="w-12 h-12 rounded-full bg-green-500 flex items-center justify-center mb-4"> |
|
|
<i data-feather="shield" class="text-white"></i> |
|
|
</div> |
|
|
<h3 class="text-xl font-bold mb-2">Privacy Focused</h3> |
|
|
<p class="text-gray-300"> |
|
|
Ethical scraping with rate limiting and respect for platform TOS. |
|
|
</p> |
|
|
</div> |
|
|
|
|
|
|
|
|
<div class="glass-card rounded-xl p-6 hover:shadow-lg transition"> |
|
|
<div class="w-12 h-12 rounded-full bg-yellow-500 flex items-center justify-center mb-4"> |
|
|
<i data-feather="code" class="text-white"></i> |
|
|
</div> |
|
|
<h3 class="text-xl font-bold mb-2">Developer Friendly</h3> |
|
|
<p class="text-gray-300"> |
|
|
Full API access and extensible plugin system. |
|
|
</p> |
|
|
</div> |
|
|
|
|
|
|
|
|
<div class="glass-card rounded-xl p-6 hover:shadow-lg transition"> |
|
|
<div class="w-12 h-12 rounded-full bg-red-500 flex items-center justify-center mb-4"> |
|
|
<i data-feather="bar-chart-2" class="text-white"></i> |
|
|
</div> |
|
|
<h3 class="text-xl font-bold mb-2">Visual Analytics</h3> |
|
|
<p class="text-gray-300"> |
|
|
Beautiful dashboards to visualize your data insights. |
|
|
</p> |
|
|
</div> |
|
|
</div> |
|
|
</section> |
|
|
|
|
|
|
|
|
<section class="container mx-auto px-6 py-20 text-center"> |
|
|
<div class="glass-card rounded-2xl p-8 md:p-12 max-w-4xl mx-auto"> |
|
|
<h2 class="text-3xl md:text-4xl font-bold mb-6">Ready to Become a Data Ninja?</h2> |
|
|
<p class="text-xl text-gray-300 mb-8 max-w-2xl mx-auto"> |
|
|
Join thousands of researchers and marketers who trust SocialScraper Pro for their data needs. |
|
|
</p> |
|
|
<button class="px-8 py-4 rounded-full bg-gradient-to-r from-indigo-600 to-purple-600 hover:from-indigo-700 hover:to-purple-700 transition text-lg font-bold"> |
|
|
Get Started for Free |
|
|
</button> |
|
|
</div> |
|
|
</section> |
|
|
|
|
|
|
|
|
<footer class="bg-gray-800 py-12"> |
|
|
<div class="container mx-auto px-6"> |
|
|
<div class="flex flex-col md:flex-row justify-between"> |
|
|
<div class="mb-8 md:mb-0"> |
|
|
<div class="flex items-center space-x-2 mb-4"> |
|
|
<i data-feather="activity" class="text-indigo-500"></i> |
|
|
<span class="text-xl font-bold gradient-text">SocialScraper Pro</span> |
|
|
</div> |
|
|
<p class="text-gray-400 max-w-xs"> |
|
|
The most powerful social media scraping tool for professionals. |
|
|
</p> |
|
|
</div> |
|
|
|
|
|
<div class="grid grid-cols-2 md:grid-cols-3 gap-8"> |
|
|
<div> |
|
|
<h4 class="text-lg font-bold mb-4">Product</h4> |
|
|
<ul class="space-y-2"> |
|
|
<li><a href="#" class="text-gray-400 hover:text-white transition">Features</a></li> |
|
|
<li><a href="#" class="text-gray-400 hover:text-white transition">Pricing</a></li> |
|
|
<li><a href="#" class="text-gray-400 hover:text-white transition">Documentation</a></li> |
|
|
</ul> |
|
|
</div> |
|
|
|
|
|
<div> |
|
|
<h4 class="text-lg font-bold mb-4">Company</h4> |
|
|
<ul class="space-y-2"> |
|
|
<li><a href="#" class="text-gray-400 hover:text-white transition">About</a></li> |
|
|
<li><a href="#" class="text-gray-400 hover:text-white transition">Careers</a></li> |
|
|
<li><a href="#" class="text-gray-400 hover:text-white transition">Contact</a></li> |
|
|
</ul> |
|
|
</div> |
|
|
|
|
|
<div> |
|
|
<h4 class="text-lg font-bold mb-4">Legal</h4> |
|
|
<ul class="space-y-2"> |
|
|
<li><a href="#" class="text-gray-400 hover:text-white transition">Privacy</a></li> |
|
|
<li><a href="#" class="text-gray-400 hover:text-white transition">Terms</a></li> |
|
|
<li><a href="#" class="text-gray-400 hover:text-white transition">Compliance</a></li> |
|
|
</ul> |
|
|
</div> |
|
|
</div> |
|
|
</div> |
|
|
|
|
|
<div class="border-t border-gray-700 mt-12 pt-8 flex flex-col md:flex-row justify-between items-center"> |
|
|
<p class="text-gray-400 mb-4 md:mb-0"> |
|
|
© 2023 SocialScraper Pro. All rights reserved. |
|
|
</p> |
|
|
<div class="flex space-x-6"> |
|
|
<a href="#" class="text-gray-400 hover:text-white transition"> |
|
|
<i data-feather="twitter"></i> |
|
|
</a> |
|
|
<a href="#" class="text-gray-400 hover:text-white transition"> |
|
|
<i data-feather="github"></i> |
|
|
</a> |
|
|
<a href="#" class="text-gray-400 hover:text-white transition"> |
|
|
<i data-feather="linkedin"></i> |
|
|
</a> |
|
|
</div> |
|
|
</div> |
|
|
</div> |
|
|
</footer> |
|
|
|
|
|
<script> |
|
|
feather.replace(); |
|
|
|
|
|
|
|
|
VANTA.NET({ |
|
|
el: "#vanta-bg", |
|
|
mouseControls: true, |
|
|
touchControls: true, |
|
|
gyroControls: false, |
|
|
minHeight: 200.00, |
|
|
minWidth: 200.00, |
|
|
scale: 1.00, |
|
|
scaleMobile: 1.00, |
|
|
color: 0x3b82f6, |
|
|
backgroundColor: 0x111827, |
|
|
points: 12.00, |
|
|
maxDistance: 22.00, |
|
|
spacing: 18.00 |
|
|
}); |
|
|
|
|
|
|
|
|
document.querySelectorAll('.glass-card').forEach((card, index) => { |
|
|
card.style.transitionDelay = `${index * 0.1}s`; |
|
|
}); |
|
|
</script> |
|
|
</body> |
|
|
</html> |
|
|
|