Spaces:
Running
Running
File size: 23,354 Bytes
938035a | 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 | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Resize Videos with AI in Seconds</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, #6B46C1 0%, #8B5CF6 100%);
}
.gradient-text {
background: linear-gradient(135deg, #6B46C1 0%, #8B5CF6 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
.card-hover {
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card-hover:hover {
transform: translateY(-5px);
box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}
.pricing-card {
background: rgba(255, 255, 255, 0.05);
backdrop-filter: blur(10px);
border: 1px solid rgba(255, 255, 255, 0.1);
}
.testimonial-card {
background: rgba(255, 255, 255, 0.08);
backdrop-filter: blur(10px);
}
.upload-area {
border: 2px dashed rgba(255, 255, 255, 0.3);
transition: all 0.3s ease;
}
.upload-area:hover {
border-color: rgba(255, 255, 255, 0.6);
background: rgba(255, 255, 255, 0.05);
}
.feature-icon {
background: linear-gradient(135deg, #6B46C1 0%, #8B5CF6 100%);
}
</style>
</head>
<body class="gradient-bg text-white min-h-screen">
<!-- Header Navigation -->
<header class="px-6 py-4">
<nav class="max-w-7xl mx-auto flex items-center justify-between">
<div class="flex items-center space-x-2">
<div class="w-8 h-8 bg-white rounded-lg flex items-center justify-center">
<i class="fas fa-play text-purple-600"></i>
</div>
<span class="text-xl font-bold">VideoResize</span>
</div>
<div class="hidden md:flex items-center space-x-8">
<a href="#" class="hover:text-purple-200 transition-colors">Features</a>
<a href="#" class="hover:text-purple-200 transition-colors">Pricing</a>
<a href="#" class="hover:text-purple-200 transition-colors">About</a>
<a href="#" class="hover:text-purple-200 transition-colors">Contact</a>
</div>
<button class="bg-white text-purple-600 px-6 py-2 rounded-lg font-semibold hover:bg-gray-100 transition-colors">
Get Started
</button>
</nav>
</header>
<!-- Hero Section -->
<section class="px-6 py-20 text-center">
<div class="max-w-4xl mx-auto">
<h1 class="text-5xl md:text-6xl font-bold mb-6 leading-tight">
Resize Videos with AI in Seconds
</h1>
<p class="text-xl text-purple-100 mb-12 max-w-2xl mx-auto">
Automatically resize your videos with AI-powered content preservation.
</p>
<!-- Upload Area -->
<div class="upload-area rounded-2xl p-12 mb-8 max-w-md mx-auto">
<div class="text-center">
<div class="w-16 h-16 bg-purple-500 rounded-full flex items-center justify-center mx-auto mb-4">
<i class="fas fa-cloud-upload-alt text-white text-2xl"></i>
</div>
<p class="text-purple-200 mb-4">Drag & drop your video here</p>
<button class="bg-purple-600 hover:bg-purple-700 px-8 py-3 rounded-lg font-semibold transition-colors">
Browse Files
</button>
</div>
</div>
<!-- Social Proof -->
<div class="flex items-center justify-center space-x-8 text-sm text-purple-200">
<div class="flex items-center space-x-2">
<i class="fas fa-check-circle text-green-400"></i>
<span>Trusted by 10,000+ users</span>
</div>
<div class="flex items-center space-x-2">
<i class="fas fa-star text-yellow-400"></i>
<span>4.9/5 rating</span>
</div>
</div>
</div>
</section>
<!-- Features Section -->
<section class="px-6 py-20">
<div class="max-w-6xl mx-auto">
<div class="text-center mb-16">
<h2 class="text-4xl font-bold mb-4">Powerful AI Video Resizing</h2>
<p class="text-purple-100 max-w-2xl mx-auto">
Our advanced AI technology ensures your videos look perfect on any platform.
</p>
</div>
<div class="grid md:grid-cols-3 gap-8">
<!-- Feature 1 -->
<div class="card-hover bg-white/5 rounded-2xl p-8 text-center">
<div class="feature-icon w-16 h-16 rounded-2xl flex items-center justify-center mx-auto mb-6">
<i class="fas fa-expand-arrows-alt text-white text-2xl"></i>
</div>
<h3 class="text-2xl font-bold mb-4">Smart Resizing</h3>
<p class="text-purple-100">
Automatically adjusts aspect ratios while preserving important content.
</p>
</div>
<!-- Feature 2 -->
<div class="card-hover bg-white/5 rounded-2xl p-8 text-center">
<div class="feature-icon w-16 h-16 rounded-2xl flex items-center justify-center mx-auto mb-6">
<i class="fas fa-tachometer-alt text-white text-2xl"></i>
</div>
<h3 class="text-2xl font-bold mb-4">Lightning Fast</h3>
<p class="text-purple-100">
Process videos in seconds with our optimized AI algorithms.
</p>
</div>
<!-- Feature 3 -->
<div class="card-hover bg-white/5 rounded-2xl p-8 text-center">
<div class="feature-icon w-16 h-16 rounded-2xl flex items-center justify-center mx-auto mb-6">
<i class="fas fa-cog text-white text-2xl"></i>
</div>
<h3 class="text-2xl font-bold mb-4">Custom Settings</h3>
<p class="text-purple-100">
Fine-tune your video output with advanced customization options.
</p>
</div>
</div>
</div>
</section>
<!-- How It Works Section -->
<section class="px-6 py-20">
<div class="max-w-6xl mx-auto">
<div class="text-center mb-16">
<h2 class="text-4xl font-bold mb-4">How It Works</h2>
<p class="text-purple-100 max-w-2xl mx-auto">
Resize your videos in just three simple steps.
</p>
</div>
<div class="grid md:grid-cols-3 gap-8">
<!-- Step 1 -->
<div class="text-center">
<div class="w-16 h-16 bg-purple-500 rounded-full flex items-center justify-center mx-auto mb-6">
<span class="text-2xl font-bold">1</span>
</div>
<h3 class="text-2xl font-bold mb-4">Upload Your Video</h3>
<p class="text-purple-100">
Simply drag and drop your video file or browse from your device.
</p>
</div>
<!-- Step 2 -->
<div class="text-center">
<div class="w-16 h-16 bg-purple-500 rounded-full flex items-center justify-center mx-auto mb-6">
<span class="text-2xl font-bold">2</span>
</div>
<h3 class="text-2xl font-bold mb-4">Choose Your Settings</h3>
<p class="text-purple-100">
Select your desired output format and resolution options.
</p>
</div>
<!-- Step 3 -->
<div class="text-center">
<div class="w-16 h-16 bg-purple-500 rounded-full flex items-center justify-center mx-auto mb-6">
<span class="text-2xl font-bold">3</span>
</div>
<h3 class="text-2xl font-bold mb-4">Download Your Video</h3>
<p class="text-purple-100">
Get your perfectly resized video ready to share anywhere.
</p>
</div>
</div>
</div>
</section>
<!-- Video Demo Section -->
<section class="px-6 py-20">
<div class="max-w-6xl mx-auto">
<div class="grid md:grid-cols-2 gap-12 items-center">
<div>
<h2 class="text-4xl font-bold mb-6">See It In Action</h2>
<p class="text-purple-100 mb-8">
Watch how our AI-powered video resizing works its magic on your content.
</p>
<div class="space-y-4">
<div class="flex items-center space-x-3">
<i class="fas fa-check-circle text-green-400"></i>
<span>Preserves important content</span>
</div>
<div class="flex items-center space-x-3">
<i class="fas fa-check-circle text-green-400"></i>
<span>Maintains video quality</span>
</div>
<div class="flex items-center space-x-3">
<i class="fas fa-check-circle text-green-400"></i>
<span>Fast processing</span>
</div>
</div>
</div>
<div class="relative">
<div class="bg-gray-800 rounded-2xl p-4 aspect-video flex items-center justify-center">
<div class="text-center">
<i class="fas fa-play text-6xl text-purple-400"></i>
<p class="mt-4 text-purple-200">Video Demo</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Testimonials Section -->
<section class="px-6 py-20">
<div class="max-w-6xl mx-auto">
<div class="text-center mb-16">
<h2 class="text-4xl font-bold mb-4">What Our Users Say</h2>
<p class="text-purple-100 max-w-2xl mx-auto">
Hear from satisfied customers who love our video resizing service.
</p>
</div>
<div class="grid md:grid-cols-3 gap-8">
<!-- Testimonial 1 -->
<div class="testimonial-card rounded-2xl p-8">
<div class="flex items-center mb-6">
<div class="w-12 h-12 bg-purple-400 rounded-full flex items-center justify-center mr-4">
<i class="fas fa-user text-white"></i>
</div>
<div>
<h4 class="font-bold">Sarah Johnson</h4>
<p class="text-purple-200 text-sm">Content Creator</p>
</div>
</div>
<p class="text-purple-100">
"This tool saved me hours of work! The AI perfectly resized my videos for Instagram without cropping out important parts."
</p>
</div>
<!-- Testimonial 2 -->
<div class="testimonial-card rounded-2xl p-8">
<div class="flex items-center mb-6">
<div class="w-12 h-12 bg-purple-400 rounded-full flex items-center justify-center mr-4">
<i class="fas fa-user text-white"></i>
</div>
<div>
<h4 class="font-bold">Michael Chen</h4>
<p class="text-purple-200 text-sm">Marketing Manager</p>
</div>
</div>
<p class="text-purple-100">
"The quality is amazing and the processing speed is unmatched. Highly recommend for any video content needs."
</p>
</div>
<!-- Testimonial 3 -->
<div class="testimonial-card rounded-2xl p-8">
<div class="flex items-center mb-6">
<div class="w-12 h-12 bg-purple-400 rounded-full flex items-center justify-center mr-4">
<i class="fas fa-user text-white"></i>
</div>
<div>
<h4 class="font-bold">Emily Rodriguez</h4>
<p class="text-purple-200 text-sm">Social Media Specialist</p>
</div>
</div>
<p class="text-purple-100">
"Game changer for my social media workflow. The AI understands what's important in each frame."
</p>
</div>
</div>
</div>
</section>
<!-- Pricing Section -->
<section class="px-6 py-20">
<div class="max-w-6xl mx-auto">
<div class="text-center mb-16">
<h2 class="text-4xl font-bold mb-4">Simple Pricing</h2>
<p class="text-purple-100 max-w-2xl mx-auto">
Choose the perfect plan for your video resizing needs.
</p>
</div>
<div class="grid md:grid-cols-3 gap-8">
<!-- Basic Plan -->
<div class="pricing-card rounded-2xl p-8 text-center">
<h3 class="text-2xl font-bold mb-4">Basic</h3>
<div class="mb-6">
<span class="text-4xl font-bold">$9</span>
<span class="text-purple-200">/month</span>
</div>
<ul class="space-y-4 mb-8">
<li class="flex items-center justify-center">
<i class="fas fa-check text-green-400 mr-3"></i>
<span>10 videos/month</span>
</li>
<li class="flex items-center justify-center">
<i class="fas fa-check text-green-400 mr-3"></i>
<span>720p resolution</span>
</li>
<li class="flex items-center justify-center">
<i class="fas fa-check text-green-400 mr-3"></i>
<span>Basic AI features</span>
</li>
</ul>
<button class="w-full bg-purple-600 hover:bg-purple-700 py-3 rounded-lg font-semibold transition-colors">
Get Started
</button>
</div>
<!-- Pro Plan -->
<div class="pricing-card rounded-2xl p-8 text-center border-2 border-purple-400">
<h3 class="text-2xl font-bold mb-4">Pro</h3>
<div class="mb-6">
<span class="text-4xl font-bold">$29</span>
<span class="text-purple-200">/month</span>
</div>
<ul class="space-y-4 mb-8">
<li class="flex items-center justify-center">
<i class="fas fa-check text-green-400 mr-3"></i>
<span>50 videos/month</span>
</li>
<li class="flex items-center justify-center">
<i class="fas fa-check text-green-400 mr-3"></i>
<span>1080p resolution</span>
</li>
<li class="flex items-center justify-center">
<i class="fas fa-check text-green-400 mr-3"></i>
<span>Advanced AI features</span>
</li>
<li class="flex items-center justify-center">
<i class="fas fa-check text-green-400 mr-3"></i>
<span>Priority support</span>
</li>
</ul>
<button class="w-full bg-purple-600 hover:bg-purple-700 py-3 rounded-lg font-semibold transition-colors">
Get Started
</button>
</div>
<!-- Enterprise Plan -->
<div class="pricing-card rounded-2xl p-8 text-center">
<h3 class="text-2xl font-bold mb-4">Enterprise</h3>
<div class="mb-6">
<span class="text-4xl font-bold">$99</span>
<span class="text-purple-200">/month</span>
</div>
<ul class="space-y-4 mb-8">
<li class="flex items-center justify-center">
<i class="fas fa-check text-green-400 mr-3"></i>
<span>Unlimited videos</span>
</li>
<li class="flex items-center justify-center">
<i class="fas fa-check text-green-400 mr-3"></i>
<span>4K resolution</span>
</li>
<li class="flex items-center justify-center">
<i class="fas fa-check text-green-400 mr-3"></i>
<span>All AI features</span>
</li>
<li class="flex items-center justify-center">
<i class="fas fa-check text-green-400 mr-3"></i>
<span>Dedicated support</span>
</li>
<li class="flex items-center justify-center">
<i class="fas fa-check text-green-400 mr-3"></i>
<span>API access</span>
</li>
</ul>
<button class="w-full bg-purple-600 hover:bg-purple-700 py-3 rounded-lg font-semibold transition-colors">
Get Started
</button>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer class="px-6 py-12 border-t border-white/10">
<div class="max-w-6xl mx-auto">
<div class="grid md:grid-cols-4 gap-8 mb-8">
<div>
<div class="flex items-center space-x-2 mb-4">
<div class="w-8 h-8 bg-white rounded-lg flex items-center justify-center">
<i class="fas fa-play text-purple-600"></i>
</div>
<span class="text-xl font-bold">VideoResize</span>
</div>
<p class="text-purple-200 text-sm">
AI-powered video resizing for perfect content every time.
</p>
</div>
<div>
<h4 class="font-bold mb-4">Product</h4>
<ul class="space-y-2 text-purple-200">
<li><a href="#" class="hover:text-white transition-colors">Features</a></li>
<li><a href="#" class="hover:text-white transition-colors">Pricing</a></li>
<li><a href="#" class="hover:text-white transition-colors">About</a></li>
<li><a href="#" class="hover:text-white transition-colors">Contact</a></li>
</ul>
</div>
<div>
<h4 class="font-bold mb-4">Resources</h4>
<ul class="space-y-2 text-purple-200">
<li><a href="#" class="hover:text-white transition-colors">Blog</a></li>
<li><a href="#" class="hover:text-white transition-colors">Help Center</a></li>
<li><a href="#" class="hover:text-white transition-colors">API Docs</a></li>
<li><a href="#" class="hover:text-white transition-colors">Status</a></li>
</ul>
</div>
<div>
<h4 class="font-bold mb-4">Legal</h4>
<ul class="space-y-2 text-purple-200">
<li><a href="#" class="hover:text-white transition-colors">Privacy</a></li>
<li><a href="#" class="hover:text-white transition-colors">Terms</a></li>
<li><a href="#" class="hover:text-white transition-colors">Cookies</a></li>
</ul>
</div>
</div>
<div class="border-t border-white/10 pt-8 flex flex-col md:flex-row justify-between items-center">
<p class="text-purple-200 text-sm">
© 2024 VideoResize. All rights reserved.
</p>
<div class="flex space-x-4 mt-4 md:mt-0">
<a href="#" class="text-purple-200 hover:text-white transition-colors">
<i class="fab fa-twitter"></i>
</a>
<a href="#" class="text-purple-200 hover:text-white transition-colors">
<i class="fab fa-facebook"></i>
</a>
<a href="#" class="text-purple-200 hover:text-white transition-colors">
<i class="fab fa-instagram"></i>
</a>
<a href="#" class="text-purple-200 hover:text-white transition-colors">
<i class="fab fa-linkedin"></i>
</a>
</div>
</div>
</div>
</footer>
<script>
// Simple upload functionality
document.querySelector('button:contains("Browse Files")').addEventListener('click', function() {
const input = document.createElement('input');
input.type = 'file';
input.accept = 'video/*';
input.click();
});
// Mobile menu toggle (if needed)
const mobileMenuBtn = document.querySelector('.mobile-menu-btn');
const mobileMenu = document.querySelector('.mobile-menu');
if (mobileMenuBtn && mobileMenu) {
mobileMenuBtn.addEventListener('click', function() {
mobileMenu.classList.toggle('hidden');
});
}
</script>
</body>
</html> |