cinemagic-explorer / index.html
Rony00's picture
https://comavidstcp.netlify.app/
c049be9 verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ComaVids - Home</title>
<link rel="icon" type="image/x-icon" href="/static/favicon.ico">
<script src="https://cdn.tailwindcss.com"></script>
<script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/animejs/lib/anime.iife.min.js"></script>
<script src="https://unpkg.com/feather-icons"></script>
</head>
<body class="bg-gray-50">
<!-- Navigation -->
<nav class="bg-white shadow-sm">
<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">
<span class="text-xl font-bold text-blue-600">ComaVids</span>
</div>
<div class="flex items-center space-x-8">
<a href="index.html" class="text-blue-600 font-medium">Home</a>
<a href="about.html" class="text-gray-600 hover:text-blue-600 transition-colors">About</a>
<a href="videos.html" class="text-gray-600 hover:text-blue-600 transition-colors">Videos</a>
<a href="contact.html" class="text-gray-600 hover:text-blue-600 transition-colors">Contact</a>
</div>
</div>
</div>
</nav>
<!-- Hero Section -->
<section class="bg-gradient-to-r from-blue-600 to-purple-600 text-white py-20">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 text-center hero-content">
<h1 class="text-5xl font-bold mb-6">Welcome to ComaVids</h1>
<p class="text-xl mb-8 max-w-2xl mx-auto">Your premier destination for high-quality video content and streaming services.</p>
<div class="space-x-4">
<a href="videos.html" class="bg-white text-blue-600 px-6 py-3 rounded-lg font-medium hover:bg-gray-100 transition-colors">Browse Videos</a>
<a href="contact.html" class="bg-transparent border-2 border-white text-white px-6 py-3 rounded-lg font-medium hover:bg-white hover:text-blue-600 transition-colors">Get Started</a>
</div>
</div>
</section>
<!-- Features Section -->
<section class="py-16 bg-white">
<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-gray-900 mb-4">Our Features</h2>
<p class="text-gray-600 max-w-2xl mx-auto">Discover what makes our website stand out from the rest</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8">
<div class="text-center p-6">
<div class="w-16 h-16 bg-blue-100 rounded-full flex items-center justify-center mx-auto mb-4">
<i data-feather="video" class="text-blue-600"></i>
</div>
<h3 class="text-xl font-semibold mb-2">HD Quality</h3>
<p class="text-gray-600">Crystal clear high-definition videos with superior audio quality.</p>
</div>
<div class="text-center p-6">
<div class="w-16 h-16 bg-green-100 rounded-full flex items-center justify-center mx-auto mb-4">
<i data-feather="play-circle" class="text-green-600"></i>
</div>
<h3 class="text-xl font-semibold mb-2">Seamless Streaming</h3>
<p class="text-gray-600">Buffer-free streaming experience across all your devices.</p>
</div>
<div class="text-center p-6">
<div class="w-16 h-16 bg-purple-100 rounded-full flex items-center justify-center mx-auto mb-4">
<i data-feather="users" class="text-purple-600"></i>
</div>
<h3 class="text-xl font-semibold mb-2">Community Driven</h3>
<p class="text-gray-600">Content curated by and for our amazing community of viewers.</p>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer class="bg-gray-800 text-white py-8">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center">
<p>&copy; 2024 ComaVids. All rights reserved.</p>
</div>
</div>
</footer>
<script>
// Initialize Feather Icons
feather.replace();
// Simple animation on page load
document.addEventListener('DOMContentLoaded', function() {
anime({
targets: '.hero-content h1, .hero-content p, .hero-content a',
translateY: [30, 0],
opacity: [0, 1],
delay: anime.stagger(100),
easing: 'easeOutCubic'
});
});
</script>
</body>
</html>