File size: 24,871 Bytes
4184135 d9f2f72 | 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 | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>SNDXCHANGE - Music Exchange Platform</title>
<link rel="icon" type="image/x-icon" href="/static/favicon.ico">
<script src="https://cdn.tailwindcss.com"></script>
<link href="https://unpkg.com/aos@2.3.1/dist/aos.css" rel="stylesheet">
<script src="https://unpkg.com/aos@2.3.1/dist/aos.js"></script>
<script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
<script src="https://unpkg.com/feather-icons"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/vanta/0.5.24/vanta.waves.min.js"></script>
<style>
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');
body {
font-family: 'Inter', sans-serif;
background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
color: #f1f5f9;
}
.platform-card {
transition: all 0.3s ease;
background: rgba(30, 41, 59, 0.7);
backdrop-filter: blur(10px);
border: 1px solid rgba(100, 116, 139, 0.3);
}
.platform-card:hover {
transform: translateY(-5px);
box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3), 0 10px 10px -5px rgba(0, 0, 0, 0.1);
border-color: rgba(100, 116, 139, 0.6);
}
.hero-gradient {
background: linear-gradient(90deg, #8b5cf6 0%, #ec4899 50%, #f43f5e 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.feature-card {
background: rgba(15, 23, 42, 0.6);
backdrop-filter: blur(10px);
border: 1px solid rgba(56, 70, 97, 0.5);
}
.stats-card {
background: rgba(30, 41, 59, 0.7);
backdrop-filter: blur(10px);
border: 1px solid rgba(100, 116, 139, 0.3);
}
.pulse {
animation: pulse 2s infinite;
}
@keyframes pulse {
0% { box-shadow: 0 0 0 0 rgba(139, 92, 246, 0.4); }
70% { box-shadow: 0 0 0 10px rgba(139, 92, 246, 0); }
100% { box-shadow: 0 0 0 0 rgba(139, 92, 246, 0); }
}
.platform-icon {
filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}
.track-card {
transition: all 0.3s ease;
}
.track-card:hover {
transform: scale(1.02);
}
.gradient-border {
position: relative;
background: linear-gradient(135deg, #0f172a, #1e293b);
}
.gradient-border::before {
content: '';
position: absolute;
top: -2px;
left: -2px;
right: -2px;
bottom: -2px;
background: linear-gradient(45deg, #8b5cf6, #ec4899, #f43f5e);
z-index: -1;
border-radius: 12px;
}
</style>
</head>
<body class="min-h-screen">
<!-- Navigation -->
<nav class="fixed w-full z-50 bg-slate-900/80 backdrop-blur-md border-b border-slate-800">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="flex justify-between h-16">
<div class="flex items-center">
<div class="flex-shrink-0 flex items-center">
<div class="h-8 w-8 rounded-full bg-gradient-to-r from-purple-500 to-pink-500 flex items-center justify-center">
<i data-feather="music" class="text-white w-5 h-5"></i>
</div>
<span class="ml-2 text-xl font-bold">SNDXCHANGE</span>
</div>
<div class="hidden sm:ml-10 sm:flex sm:space-x-8">
<a href="#" class="border-b-2 border-purple-500 text-white inline-flex items-center px-1 pt-1 text-sm font-medium">Discover</a>
<a href="#" class="text-slate-300 hover:border-slate-300 hover:text-white inline-flex items-center px-1 pt-1 text-sm font-medium">Exchange</a>
<a href="#" class="text-slate-300 hover:border-slate-300 hover:text-white inline-flex items-center px-1 pt-1 text-sm font-medium">Community</a>
<a href="#" class="text-slate-300 hover:border-slate-300 hover:text-white inline-flex items-center px-1 pt-1 text-sm font-medium">Stats</a>
</div>
</div>
<div class="hidden sm:ml-6 sm:flex sm:items-center">
<button class="bg-gradient-to-r from-purple-600 to-pink-600 text-white px-4 py-2 rounded-full text-sm font-medium hover:opacity-90 transition-opacity">
Sign In
</button>
</div>
<div class="-mr-2 flex items-center sm:hidden">
<button type="button" class="inline-flex items-center justify-center p-2 rounded-md text-slate-400 hover:text-white hover:bg-slate-700 focus:outline-none">
<i data-feather="menu" class="block h-6 w-6"></i>
</button>
</div>
</div>
</div>
</nav>
<!-- Hero Section -->
<div id="hero" class="pt-24 pb-20">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center">
<h1 class="text-4xl md:text-6xl font-extrabold tracking-tight">
<span class="hero-gradient">Share Music,</span>
<span class="block text-white mt-2">Exchange Engagement</span>
</h1>
<p class="mt-6 max-w-2xl mx-auto text-xl text-slate-300">
Connect with artists across all major platforms. Share tracks, exchange likes and reposts, and grow your audience through genuine musical collaboration.
</p>
<div class="mt-10 flex justify-center gap-4">
<button class="bg-gradient-to-r from-purple-600 to-pink-600 text-white px-8 py-3 rounded-full text-base font-medium hover:opacity-90 transition-opacity shadow-lg">
Join SNDXCHANGE
</button>
<button class="bg-slate-800 text-white px-8 py-3 rounded-full text-base font-medium hover:bg-slate-700 transition-colors border border-slate-700">
How It Works
</button>
</div>
</div>
</div>
</div>
<!-- Supported Platforms -->
<div class="py-12 bg-slate-900/50">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-12">
<h2 class="text-3xl font-bold text-white">Supported Platforms</h2>
<p class="mt-4 text-lg text-slate-300">Connect all your music profiles in one place</p>
</div>
<div class="grid grid-cols-2 md:grid-cols-5 gap-6">
<!-- SoundCloud -->
<div class="platform-card rounded-xl p-6 flex flex-col items-center">
<div class="w-16 h-16 rounded-full bg-orange-500 flex items-center justify-center platform-icon">
<i data-feather="cloud" class="text-white w-8 h-8"></i>
</div>
<h3 class="mt-4 text-lg font-semibold text-white">SoundCloud</h3>
<p class="mt-2 text-sm text-slate-400 text-center">Upload & discover</p>
</div>
<!-- Spotify -->
<div class="platform-card rounded-xl p-6 flex flex-col items-center">
<div class="w-16 h-16 rounded-full bg-green-500 flex items-center justify-center platform-icon">
<i data-feather="music" class="text-white w-8 h-8"></i>
</div>
<h3 class="mt-4 text-lg font-semibold text-white">Spotify</h3>
<p class="mt-2 text-sm text-slate-400 text-center">Playlists & streams</p>
</div>
<!-- YouTube -->
<div class="platform-card rounded-xl p-6 flex flex-col items-center">
<div class="w-16 h-16 rounded-full bg-red-500 flex items-center justify-center platform-icon">
<i data-feather="play-circle" class="text-white w-8 h-8"></i>
</div>
<h3 class="mt-4 text-lg font-semibold text-white">YouTube</h3>
<p class="mt-2 text-sm text-slate-400 text-center">Videos & channels</p>
</div>
<!-- Bandcamp -->
<div class="platform-card rounded-xl p-6 flex flex-col items-center">
<div class="w-16 h-16 rounded-full bg-indigo-500 flex items-center justify-center platform-icon">
<i data-feather="disc" class="text-white w-8 h-8"></i>
</div>
<h3 class="mt-4 text-lg font-semibold text-white">Bandcamp</h3>
<p class="mt-2 text-sm text-slate-400 text-center">Direct support</p>
</div>
<!-- Audius -->
<div class="platform-card rounded-xl p-6 flex flex-col items-center">
<div class="w-16 h-16 rounded-full bg-blue-500 flex items-center justify-center platform-icon">
<i data-feather="headphones" class="text-white w-8 h-8"></i>
</div>
<h3 class="mt-4 text-lg font-semibold text-white">Audius</h3>
<p class="mt-2 text-sm text-slate-400 text-center">Decentralized</p>
</div>
</div>
</div>
</div>
<!-- Features Section -->
<div class="py-20">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="lg:text-center">
<h2 class="text-3xl font-extrabold text-white sm:text-4xl">How RepostExchange Works</h2>
<p class="mt-4 max-w-2xl mx-auto text-xl text-slate-300 lg:mx-auto">
A revolutionary platform for musical collaboration and audience growth
</p>
</div>
<div class="mt-16">
<div class="grid gap-12 lg:grid-cols-3 lg:gap-x-8 lg:gap-y-12">
<div class="feature-card rounded-2xl p-8" data-aos="fade-up">
<div class="flex items-center justify-center h-12 w-12 rounded-md bg-gradient-to-r from-purple-500 to-pink-500 text-white">
<i data-feather="upload" class="w-6 h-6"></i>
</div>
<div class="mt-5">
<h3 class="text-lg font-medium text-white">Share Your Music</h3>
<p class="mt-2 text-base text-slate-300">
Upload your tracks from any supported platform and make them available for exchange with other artists.
</p>
</div>
</div>
<div class="feature-card rounded-2xl p-8" data-aos="fade-up" data-aos-delay="100">
<div class="flex items-center justify-center h-12 w-12 rounded-md bg-gradient-to-r from-purple-500 to-pink-500 text-white">
<i data-feather="users" class="w-6 h-6"></i>
</div>
<div class="mt-5">
<h3 class="text-lg font-medium text-white">Connect with Artists</h3>
<p class="mt-2 text-base text-slate-300">
Discover like-minded musicians and build genuine connections through our smart matching algorithm.
</p>
</div>
</div>
<div class="feature-card rounded-2xl p-8" data-aos="fade-up" data-aos-delay="200">
<div class="flex items-center justify-center h-12 w-12 rounded-md bg-gradient-to-r from-purple-500 to-pink-500 text-white">
<i data-feather="repeat" class="w-6 h-6"></i>
</div>
<div class="mt-5">
<h3 class="text-lg font-medium text-white">Exchange & Repost</h3>
<p class="mt-2 text-base text-slate-300">
Engage in fair exchanges - when you repost others, they repost yours, growing both audiences.
</p>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Stats Section -->
<div class="py-16 bg-slate-900/50">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="grid grid-cols-2 md:grid-cols-4 gap-6">
<div class="stats-card rounded-xl p-6 text-center">
<div class="text-3xl font-bold text-purple-400">125K+</div>
<div class="mt-2 text-slate-300">Active Artists</div>
</div>
<div class="stats-card rounded-xl p-6 text-center">
<div class="text-3xl font-bold text-pink-400">2.4M+</div>
<div class="mt-2 text-slate-300">Tracks Shared</div>
</div>
<div class="stats-card rounded-xl p-6 text-center">
<div class="text-3xl font-bold text-blue-400">89K+</div>
<div class="mt-2 text-slate-300">Exchanges Made</div>
</div>
<div class="stats-card rounded-xl p-6 text-center">
<div class="text-3xl font-bold text-green-400">15+</div>
<div class="mt-2 text-slate-300">Supported Platforms</div>
</div>
</div>
</div>
</div>
<!-- Discover Section -->
<div class="py-20">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-16">
<h2 class="text-3xl font-bold text-white sm:text-4xl">Discover & Engage</h2>
<p class="mt-4 max-w-2xl mx-auto text-xl text-slate-300">
Find tracks to engage with and grow your audience through fair exchange
</p>
</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
<!-- Track 1 -->
<div class="track-card gradient-border rounded-2xl overflow-hidden">
<div class="p-6">
<div class="flex items-start">
<img class="h-16 w-16 rounded-lg object-cover" src="http://static.photos/music/320x320/1" alt="Track cover">
<div class="ml-4">
<h3 class="text-lg font-bold text-white">Midnight Vibes</h3>
<p class="text-slate-400">Alex Rivers</p>
<div class="flex items-center mt-1">
<span class="text-xs bg-purple-900/50 text-purple-300 px-2 py-1 rounded">Electronic</span>
<span class="text-xs bg-slate-800 text-slate-300 px-2 py-1 rounded ml-2">SoundCloud</span>
</div>
</div>
</div>
<div class="mt-4 flex justify-between items-center">
<button class="text-slate-300 hover:text-white flex items-center">
<i data-feather="play" class="w-4 h-4 mr-1"></i> Preview
</button>
<button class="text-slate-300 hover:text-purple-400 flex items-center">
<i data-feather="heart" class="w-4 h-4 mr-1"></i> Like
</button>
</div>
</div>
</div>
<!-- Track 2 -->
<div class="track-card gradient-border rounded-2xl overflow-hidden">
<div class="p-6">
<div class="flex items-start">
<img class="h-16 w-16 rounded-lg object-cover" src="http://static.photos/music/320x320/2" alt="Track cover">
<div class="ml-4">
<h3 class="text-lg font-bold text-white">Urban Dreams</h3>
<p class="text-slate-400">Jazz Collective</p>
<div class="flex items-center mt-1">
<span class="text-xs bg-pink-900/50 text-pink-300 px-2 py-1 rounded">Hip-Hop</span>
<span class="text-xs bg-slate-800 text-slate-300 px-2 py-1 rounded ml-2">Spotify</span>
</div>
</div>
</div>
<div class="mt-4 flex justify-between items-center">
<button class="text-slate-300 hover:text-white flex items-center">
<i data-feather="play" class="w-4 h-4 mr-1"></i> Preview
</button>
<button class="text-slate-300 hover:text-purple-400 flex items-center">
<i data-feather="repeat" class="w-4 h-4 mr-1"></i> Repost
</button>
</div>
</div>
</div>
<!-- Track 3 -->
<div class="track-card gradient-border rounded-2xl overflow-hidden">
<div class="p-6">
<div class="flex items-start">
<img class="h-16 w-16 rounded-lg object-cover" src="http://static.photos/music/320x320/3" alt="Track cover">
<div class="ml-4">
<h3 class="text-lg font-bold text-white">Coastal Waves</h3>
<p class="text-slate-400">Ocean Sounds</p>
<div class="flex items-center mt-1">
<span class="text-xs bg-blue-900/50 text-blue-300 px-2 py-1 rounded">Ambient</span>
<span class="text-xs bg-slate-800 text-slate-300 px-2 py-1 rounded ml-2">Bandcamp</span>
</div>
</div>
</div>
<div class="mt-4 flex justify-between items-center">
<button class="text-slate-300 hover:text-white flex items-center">
<i data-feather="play" class="w-4 h-4 mr-1"></i> Preview
</button>
<button class="text-slate-300 hover:text-purple-400 flex items-center">
<i data-feather="heart" class="w-4 h-4 mr-1"></i> Like
</button>
</div>
</div>
</div>
</div>
<div class="mt-12 text-center">
<button class="inline-flex items-center px-6 py-3 border border-transparent text-base font-medium rounded-full text-white bg-gradient-to-r from-purple-600 to-pink-600 hover:opacity-90">
Discover More Tracks
<i data-feather="arrow-right" class="ml-2 w-4 h-4"></i>
</button>
</div>
</div>
</div>
<!-- CTA Section -->
<div class="py-20 bg-gradient-to-r from-purple-900/30 to-pink-900/30">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="max-w-3xl mx-auto text-center">
<h2 class="text-3xl font-extrabold text-white sm:text-4xl">
Ready to exchange engagement?
</h2>
<p class="mt-4 text-lg text-slate-300">
Join thousands of artists who are already sharing music and growing their audience through fair engagement exchange.
</p>
<div class="mt-8">
<button class="pulse bg-gradient-to-r from-purple-600 to-pink-600 text-white px-8 py-4 rounded-full text-lg font-bold hover:opacity-90 transition-opacity shadow-xl">
Start Exchanging Now
</button>
<p class="mt-4 text-sm text-slate-400">Free to join. No credit card required.</p>
</div>
</div>
</div>
</div>
<!-- Footer -->
<footer class="bg-slate-900 border-t border-slate-800">
<div class="max-w-7xl mx-auto py-12 px-4 sm:px-6 lg:px-8">
<div class="grid grid-cols-2 md:grid-cols-4 gap-8">
<div class="col-span-2">
<div class="flex items-center">
<div class="h-8 w-8 rounded-full bg-gradient-to-r from-purple-500 to-pink-500 flex items-center justify-center">
<i data-feather="music" class="text-white w-5 h-5"></i>
</div>
<span class="ml-2 text-xl font-bold text-white">SNDXCHANGE</span>
</div>
<p class="mt-4 text-slate-400 max-w-md">
The ultimate platform for music sharing and engagement exchange across all major platforms.
</p>
<div class="mt-6 flex space-x-6">
<a href="#" class="text-slate-400 hover:text-white">
<i data-feather="twitter" class="w-5 h-5"></i>
</a>
<a href="#" class="text-slate-400 hover:text-white">
<i data-feather="instagram" class="w-5 h-5"></i>
</a>
<a href="#" class="text-slate-400 hover:text-white">
<i data-feather="facebook" class="w-5 h-5"></i>
</a>
<a href="#" class="text-slate-400 hover:text-white">
<i data-feather="youtube" class="w-5 h-5"></i>
</a>
</div>
</div>
<div>
<h3 class="text-sm font-semibold text-slate-200 tracking-wider uppercase">Platform</h3>
<ul class="mt-4 space-y-4">
<li><a href="#" class="text-slate-400 hover:text-white">Discover</a></li>
<li><a href="#" class="text-slate-400 hover:text-white">Exchange</a></li>
<li><a href="#" class="text-slate-400 hover:text-white">Community</a></li>
<li><a href="#" class="text-slate-400 hover:text-white">Pricing</a></li>
</ul>
</div>
<div>
<h3 class="text-sm font-semibold text-slate-200 tracking-wider uppercase">Support</h3>
<ul class="mt-4 space-y-4">
<li><a href="#" class="text-slate-400 hover:text-white">Help Center</a></li>
<li><a href="#" class="text-slate-400 hover:text-white">Contact Us</a></li>
<li><a href="#" class="text-slate-400 hover:text-white">Privacy Policy</a></li>
<li><a href="#" class="text-slate-400 hover:text-white">Terms of Service</a></li>
</ul>
</div>
</div>
<div class="mt-12 border-t border-slate-800 pt-8">
<p class="text-slate-400 text-sm">© 2023 SNDXCHANGE. All rights reserved.</p>
</div>
</div>
</footer>
<script>
AOS.init({
duration: 800,
easing: 'ease-out-cubic'
});
feather.replace();
// Initialize hero background animation
VANTA.WAVES({
el: "#hero",
mouseControls: true,
touchControls: true,
gyroControls: false,
minHeight: 200.00,
minWidth: 200.00,
scale: 1.00,
scaleMobile: 1.00,
color: 0x1e293b,
shininess: 15.00,
waveHeight: 15.00,
waveSpeed: 1.00
});
</script>
</body>
</html>
|