File size: 28,760 Bytes
7695b35 |
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 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ChordAI Studio - AI-Powered Music Creation</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>
.gradient-bg {
background: linear-gradient(135deg, #6e8efb, #a777e3);
}
.recording-pulse {
animation: pulse 2s infinite;
}
@keyframes pulse {
0% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7); }
70% { box-shadow: 0 0 0 10px rgba(239, 68, 68, 0); }
100% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0); }
}
.scroll-container {
scroll-behavior: smooth;
}
.chord-highlight {
position: relative;
}
.chord-highlight::before {
content: attr(data-chord);
position: absolute;
top: -1.5rem;
left: 0;
font-weight: bold;
color: #a855f7;
font-size: 0.9rem;
}
</style>
</head>
<body class="bg-gray-100 font-sans">
<!-- Navigation -->
<nav class="gradient-bg text-white shadow-lg">
<div class="container mx-auto px-4 py-3 flex justify-between items-center">
<div class="flex items-center space-x-2">
<i class="fas fa-guitar text-2xl"></i>
<span class="text-xl font-bold">ChordAI Studio</span>
</div>
<div class="hidden md:flex space-x-6">
<a href="#features" class="hover:text-gray-200 transition">Features</a>
<a href="#demo" class="hover:text-gray-200 transition">Demo</a>
<a href="#pricing" class="hover:text-gray-200 transition">Pricing</a>
<a href="#contact" class="hover:text-gray-200 transition">Contact</a>
</div>
<button class="md:hidden text-xl">
<i class="fas fa-bars"></i>
</button>
</div>
</nav>
<!-- Hero Section -->
<section class="gradient-bg text-white py-16 md:py-24">
<div class="container mx-auto px-4 flex flex-col md:flex-row items-center">
<div class="md:w-1/2 mb-10 md:mb-0">
<h1 class="text-4xl md:text-5xl font-bold mb-4">Create Music Like Never Before</h1>
<p class="text-xl mb-8">AI-powered chord detection, professional recording studio, and advanced editing tools - all in one app.</p>
<div class="flex flex-col sm:flex-row space-y-3 sm:space-y-0 sm:space-x-4">
<button class="bg-white text-purple-600 px-6 py-3 rounded-full font-bold hover:bg-gray-100 transition">
<i class="fas fa-download mr-2"></i> Download Now
</button>
<button class="border-2 border-white text-white px-6 py-3 rounded-full font-bold hover:bg-white hover:text-purple-600 transition">
<i class="fas fa-play mr-2"></i> Watch Demo
</button>
</div>
</div>
<div class="md:w-1/2 relative">
<div class="bg-white rounded-xl shadow-2xl overflow-hidden w-80 mx-auto relative">
<div class="bg-gray-800 h-8 flex items-center px-3">
<div class="flex space-x-2">
<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>
<div class="h-96 bg-gray-900 p-4">
<div class="h-full flex flex-col">
<div class="flex-1 bg-gray-800 rounded-lg mb-3 p-4 text-white overflow-y-auto scroll-container">
<p class="text-center mb-6 text-gray-400">Imagine - John Lennon</p>
<p class="text-lg leading-relaxed">
<span class="chord-highlight" data-chord="C">Imagine</span> there's no <span class="chord-highlight" data-chord="G">heaven</span><br>
It's <span class="chord-highlight" data-chord="Am">easy</span> if you <span class="chord-highlight" data-chord="F">try</span><br>
No <span class="chord-highlight" data-chord="C">hell</span> below <span class="chord-highlight" data-chord="G">us</span><br>
Above <span class="chord-highlight" data-chord="Am">us</span> only <span class="chord-highlight" data-chord="F">sky</span>
</p>
</div>
<div class="flex justify-between items-center">
<button class="w-12 h-12 rounded-full bg-red-500 text-white flex items-center justify-center recording-pulse">
<i class="fas fa-microphone"></i>
</button>
<div class="flex space-x-4">
<button class="w-10 h-10 rounded-full bg-gray-700 text-white flex items-center justify-center">
<i class="fas fa-sliders-h"></i>
</button>
<button class="w-10 h-10 rounded-full bg-gray-700 text-white flex items-center justify-center">
<i class="fas fa-magic"></i>
</button>
</div>
</div>
</div>
</div>
</div>
<div class="absolute -bottom-6 -right-6 bg-yellow-400 text-gray-900 px-4 py-2 rounded-full font-bold text-sm transform rotate-6 shadow-lg">
AI Chord Detection
</div>
</div>
</div>
</section>
<!-- Features Section -->
<section id="features" class="py-16 bg-white">
<div class="container mx-auto px-4">
<h2 class="text-3xl font-bold text-center mb-12">Powerful Features</h2>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8">
<!-- Feature 1 -->
<div class="bg-gray-50 p-6 rounded-xl hover:shadow-lg transition">
<div class="w-16 h-16 gradient-bg rounded-full flex items-center justify-center text-white mb-4">
<i class="fas fa-brain text-2xl"></i>
</div>
<h3 class="text-xl font-bold mb-2">AI Chord Detection</h3>
<p class="text-gray-600">Automatically detect chords from audio or lyrics with our advanced machine learning algorithms.</p>
</div>
<!-- Feature 2 -->
<div class="bg-gray-50 p-6 rounded-xl hover:shadow-lg transition">
<div class="w-16 h-16 gradient-bg rounded-full flex items-center justify-center text-white mb-4">
<i class="fas fa-video text-2xl"></i>
</div>
<h3 class="text-xl font-bold mb-2">4K Recording Studio</h3>
<p class="text-gray-600">Professional-grade recording with teleprompter, metronome, and real-time effects.</p>
</div>
<!-- Feature 3 -->
<div class="bg-gray-50 p-6 rounded-xl hover:shadow-lg transition">
<div class="w-16 h-16 gradient-bg rounded-full flex items-center justify-center text-white mb-4">
<i class="fas fa-sliders-h text-2xl"></i>
</div>
<h3 class="text-xl font-bold mb-2">AI Editing Suite</h3>
<p class="text-gray-600">Vocal tuning, background replacement, and audio effects to polish your recordings.</p>
</div>
</div>
</div>
</section>
<!-- Demo Section -->
<section id="demo" class="py-16 bg-gray-100">
<div class="container mx-auto px-4">
<h2 class="text-3xl font-bold text-center mb-12">See It In Action</h2>
<div class="flex flex-col md:flex-row items-center">
<div class="md:w-1/2 mb-8 md:mb-0">
<div class="bg-black rounded-xl overflow-hidden shadow-xl">
<div class="relative pt-[56.25%]">
<div class="absolute inset-0 flex items-center justify-center bg-gray-900 text-white">
<i class="fas fa-play text-4xl text-purple-500"></i>
</div>
</div>
<div class="p-4 bg-gray-800 text-white">
<h3 class="font-bold">ChordAI Studio Demo</h3>
<p class="text-sm text-gray-400">See how to create a professional recording in minutes</p>
</div>
</div>
</div>
<div class="md:w-1/2 md:pl-12">
<h3 class="text-2xl font-bold mb-4">From Idea to Finished Song</h3>
<p class="text-gray-600 mb-6">ChordAI Studio simplifies the music creation process with intuitive tools powered by artificial intelligence.</p>
<div class="space-y-4">
<div class="flex items-start">
<div class="w-10 h-10 gradient-bg rounded-full flex items-center justify-center text-white mr-4 flex-shrink-0">
<span class="font-bold">1</span>
</div>
<div>
<h4 class="font-bold">Input Your Song</h4>
<p class="text-gray-600">Upload audio or enter lyrics to get started.</p>
</div>
</div>
<div class="flex items-start">
<div class="w-10 h-10 gradient-bg rounded-full flex items-center justify-center text-white mr-4 flex-shrink-0">
<span class="font-bold">2</span>
</div>
<div>
<h4 class="font-bold">AI Analyzes & Suggests</h4>
<p class="text-gray-600">Get chord suggestions, structure recommendations.</p>
</div>
</div>
<div class="flex items-start">
<div class="w-10 h-10 gradient-bg rounded-full flex items-center justify-center text-white mr-4 flex-shrink-0">
<span class="font-bold">3</span>
</div>
<div>
<h4 class="font-bold">Record & Edit</h4>
<p class="text-gray-600">Use our studio tools to capture your performance.</p>
</div>
</div>
<div class="flex items-start">
<div class="w-10 h-10 gradient-bg rounded-full flex items-center justify-center text-white mr-4 flex-shrink-0">
<span class="font-bold">4</span>
</div>
<div>
<h4 class="font-bold">Share Your Creation</h4>
<p class="text-gray-600">Export in professional formats or share directly.</p>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Pricing Section -->
<section id="pricing" class="py-16 bg-white">
<div class="container mx-auto px-4">
<h2 class="text-3xl font-bold text-center mb-12">Simple Pricing</h2>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8 max-w-5xl mx-auto">
<!-- Free Tier -->
<div class="border border-gray-200 rounded-xl p-6 hover:shadow-lg transition">
<h3 class="text-xl font-bold mb-2">Starter</h3>
<p class="text-gray-600 mb-4">Perfect for beginners</p>
<div class="mb-6">
<span class="text-4xl font-bold">$0</span>
<span class="text-gray-500">/month</span>
</div>
<ul class="space-y-3 mb-8">
<li class="flex items-center">
<i class="fas fa-check text-green-500 mr-2"></i>
<span>Basic chord detection</span>
</li>
<li class="flex items-center">
<i class="fas fa-check text-green-500 mr-2"></i>
<span>720p recording</span>
</li>
<li class="flex items-center">
<i class="fas fa-check text-green-500 mr-2"></i>
<span>3 song limit</span>
</li>
<li class="flex items-center text-gray-400">
<i class="fas fa-times text-red-400 mr-2"></i>
<span>No AI editing</span>
</li>
</ul>
<button class="w-full py-3 border-2 border-purple-500 text-purple-500 rounded-lg font-bold hover:bg-purple-50 transition">
Get Started
</button>
</div>
<!-- Pro Tier -->
<div class="border-2 border-purple-500 rounded-xl p-6 hover:shadow-lg transition relative">
<div class="absolute top-0 right-0 bg-purple-500 text-white px-3 py-1 text-xs font-bold rounded-bl-lg rounded-tr-lg">
POPULAR
</div>
<h3 class="text-xl font-bold mb-2">Pro</h3>
<p class="text-gray-600 mb-4">For serious musicians</p>
<div class="mb-6">
<span class="text-4xl font-bold">$9.99</span>
<span class="text-gray-500">/month</span>
</div>
<ul class="space-y-3 mb-8">
<li class="flex items-center">
<i class="fas fa-check text-green-500 mr-2"></i>
<span>Advanced chord detection</span>
</li>
<li class="flex items-center">
<i class="fas fa-check text-green-500 mr-2"></i>
<span>4K recording</span>
</li>
<li class="flex items-center">
<i class="fas fa-check text-green-500 mr-2"></i>
<span>Unlimited songs</span>
</li>
<li class="flex items-center">
<i class="fas fa-check text-green-500 mr-2"></i>
<span>AI editing suite</span>
</li>
</ul>
<button class="w-full py-3 gradient-bg text-white rounded-lg font-bold hover:opacity-90 transition">
Upgrade Now
</button>
</div>
<!-- Studio Tier -->
<div class="border border-gray-200 rounded-xl p-6 hover:shadow-lg transition">
<h3 class="text-xl font-bold mb-2">Studio</h3>
<p class="text-gray-600 mb-4">For professionals</p>
<div class="mb-6">
<span class="text-4xl font-bold">$29.99</span>
<span class="text-gray-500">/month</span>
</div>
<ul class="space-y-3 mb-8">
<li class="flex items-center">
<i class="fas fa-check text-green-500 mr-2"></i>
<span>Pro features plus:</span>
</li>
<li class="flex items-center">
<i class="fas fa-check text-green-500 mr-2"></i>
<span>Commercial license</span>
</li>
<li class="flex items-center">
<i class="fas fa-check text-green-500 mr-2"></i>
<span>Priority support</span>
</li>
<li class="flex items-center">
<i class="fas fa-check text-green-500 mr-2"></i>
<span>Custom branding</span>
</li>
</ul>
<button class="w-full py-3 border-2 border-purple-500 text-purple-500 rounded-lg font-bold hover:bg-purple-50 transition">
Contact Sales
</button>
</div>
</div>
</div>
</section>
<!-- Testimonials -->
<section class="py-16 bg-gray-100">
<div class="container mx-auto px-4">
<h2 class="text-3xl font-bold text-center mb-12">What Musicians Say</h2>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8">
<!-- Testimonial 1 -->
<div class="bg-white p-6 rounded-xl shadow-sm">
<div class="flex items-center mb-4">
<div class="w-12 h-12 rounded-full bg-purple-500 flex items-center justify-center text-white font-bold mr-4">
JS
</div>
<div>
<h4 class="font-bold">Jamie Smith</h4>
<p class="text-gray-500 text-sm">Singer-Songwriter</p>
</div>
</div>
<p class="text-gray-600 italic">"ChordAI Studio has completely transformed my songwriting process. The chord detection is scarily accurate!"</p>
<div class="mt-4 text-yellow-400">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
</div>
</div>
<!-- Testimonial 2 -->
<div class="bg-white p-6 rounded-xl shadow-sm">
<div class="flex items-center mb-4">
<div class="w-12 h-12 rounded-full bg-blue-500 flex items-center justify-center text-white font-bold mr-4">
MK
</div>
<div>
<h4 class="font-bold">Maria Kim</h4>
<p class="text-gray-500 text-sm">Music Teacher</p>
</div>
</div>
<p class="text-gray-600 italic">"My students love using the teleprompter feature during practice. It's like having a personal coach!"</p>
<div class="mt-4 text-yellow-400">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star-half-alt"></i>
</div>
</div>
<!-- Testimonial 3 -->
<div class="bg-white p-6 rounded-xl shadow-sm">
<div class="flex items-center mb-4">
<div class="w-12 h-12 rounded-full bg-green-500 flex items-center justify-center text-white font-bold mr-4">
AD
</div>
<div>
<h4 class="font-bold">Alex Davis</h4>
<p class="text-gray-500 text-sm">Podcast Producer</p>
</div>
</div>
<p class="text-gray-600 italic">"The audio cleanup tools save me hours in post-production. The noise removal is studio-quality."</p>
<div class="mt-4 text-yellow-400">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
</div>
</div>
</div>
</div>
</section>
<!-- CTA Section -->
<section class="gradient-bg text-white py-16">
<div class="container mx-auto px-4 text-center">
<h2 class="text-3xl font-bold mb-6">Ready to Create Your Next Hit?</h2>
<p class="text-xl mb-8 max-w-2xl mx-auto">Join thousands of musicians using ChordAI Studio to bring their musical ideas to life.</p>
<div class="flex flex-col sm:flex-row justify-center space-y-3 sm:space-y-0 sm:space-x-4">
<button class="bg-white text-purple-600 px-8 py-4 rounded-full font-bold hover:bg-gray-100 transition text-lg">
<i class="fas fa-download mr-2"></i> Download Now
</button>
<button class="border-2 border-white text-white px-8 py-4 rounded-full font-bold hover:bg-white hover:text-purple-600 transition text-lg">
<i class="fas fa-play-circle mr-2"></i> Watch Tutorial
</button>
</div>
</div>
</section>
<!-- Footer -->
<footer id="contact" class="bg-gray-900 text-white py-12">
<div class="container mx-auto px-4">
<div class="grid grid-cols-1 md:grid-cols-4 gap-8">
<div>
<h3 class="text-xl font-bold mb-4 flex items-center">
<i class="fas fa-guitar mr-2"></i> ChordAI Studio
</h3>
<p class="text-gray-400">The ultimate AI-powered music creation app for iOS and Android.</p>
</div>
<div>
<h4 class="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">FAQ</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Updates</a></li>
</ul>
</div>
<div>
<h4 class="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">Blog</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">Press</a></li>
</ul>
</div>
<div>
<h4 class="font-bold mb-4">Connect</h4>
<div class="flex space-x-4 mb-4">
<a href="#" class="w-10 h-10 rounded-full bg-gray-800 flex items-center justify-center hover:bg-purple-600 transition">
<i class="fab fa-twitter"></i>
</a>
<a href="#" class="w-10 h-10 rounded-full bg-gray-800 flex items-center justify-center hover:bg-purple-600 transition">
<i class="fab fa-instagram"></i>
</a>
<a href="#" class="w-10 h-10 rounded-full bg-gray-800 flex items-center justify-center hover:bg-purple-600 transition">
<i class="fab fa-facebook-f"></i>
</a>
<a href="#" class="w-10 h-10 rounded-full bg-gray-800 flex items-center justify-center hover:bg-purple-600 transition">
<i class="fab fa-youtube"></i>
</a>
</div>
<p class="text-gray-400">[email protected]</p>
</div>
</div>
<div class="border-t border-gray-800 mt-8 pt-8 flex flex-col md:flex-row justify-between items-center">
<p class="text-gray-400 mb-4 md:mb-0">© 2023 ChordAI Studio. All rights reserved.</p>
<div class="flex space-x-6">
<a href="#" class="text-gray-400 hover:text-white transition">Privacy</a>
<a href="#" class="text-gray-400 hover:text-white transition">Terms</a>
<a href="#" class="text-gray-400 hover:text-white transition">Cookies</a>
</div>
</div>
</div>
</footer>
<script>
// Simple JavaScript for mobile menu toggle
document.addEventListener('DOMContentLoaded', function() {
const mobileMenuButton = document.querySelector('button.md\\:hidden');
const mobileMenu = document.querySelector('.md\\:flex.space-x-6');
mobileMenuButton.addEventListener('click', function() {
if (mobileMenu.classList.contains('hidden')) {
mobileMenu.classList.remove('hidden');
mobileMenu.classList.add('flex', 'flex-col', 'absolute', 'top-16', 'right-4', 'bg-white', 'shadow-lg', 'rounded-lg', 'p-4', 'space-y-3', 'space-x-0', 'z-50');
} else {
mobileMenu.classList.add('hidden');
mobileMenu.classList.remove('flex', 'flex-col', 'absolute', 'top-16', 'right-4', 'bg-white', 'shadow-lg', 'rounded-lg', 'p-4', 'space-y-3', 'space-x-0', 'z-50');
}
});
// Smooth scrolling for anchor links
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener('click', function (e) {
e.preventDefault();
const targetId = this.getAttribute('href');
if (targetId === '#') return;
const targetElement = document.querySelector(targetId);
if (targetElement) {
targetElement.scrollIntoView({
behavior: 'smooth'
});
// Close mobile menu if open
if (!mobileMenu.classList.contains('hidden')) {
mobileMenu.classList.add('hidden');
mobileMenu.classList.remove('flex', 'flex-col', 'absolute', 'top-16', 'right-4', 'bg-white', 'shadow-lg', 'rounded-lg', 'p-4', 'space-y-3', 'space-x-0', 'z-50');
}
}
});
});
});
</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=tushkum/chordsai" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html> |