cricket-1 / index.html
miiann's picture
undefined - Initial Deployment
e89d15a verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Cricket Elite - Premium Cricket Equipment</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>
@keyframes float {
0%, 100% { transform: translateY(0); }
50% { transform: translateY(-20px); }
}
@keyframes rotate {
from { transform: rotate(0deg); }
to { transform: rotate(360deg); }
}
@keyframes pulse {
0%, 100% { opacity: 0.2; }
50% { opacity: 0.5; }
}
.floating {
animation: float 6s ease-in-out infinite;
}
.rotating {
animation: rotate 20s linear infinite;
}
.pulse {
animation: pulse 4s ease-in-out infinite;
}
.fade-in {
opacity: 0;
transition: opacity 0.8s ease-in, transform 0.8s ease-in;
}
.fade-in.visible {
opacity: 1;
transform: translateY(0);
}
.bg-custom {
background: radial-gradient(circle at 10% 20%, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
}
.hover-scale {
transition: transform 0.3s ease;
}
.hover-scale:hover {
transform: scale(1.05);
}
.sticky-nav {
position: sticky;
top: 0;
z-index: 50;
backdrop-filter: blur(10px);
}
</style>
</head>
<body class="bg-custom text-white min-h-screen overflow-x-hidden">
<!-- Floating background elements -->
<div class="fixed inset-0 overflow-hidden pointer-events-none">
<div class="absolute top-1/4 left-1/4 w-16 h-16 rounded-full bg-yellow-500 opacity-20 pulse"></div>
<div class="absolute top-1/3 right-1/5 w-24 h-24 rounded-full bg-red-500 opacity-15 pulse" style="animation-delay: 0.5s;"></div>
<div class="absolute bottom-1/4 left-1/5 w-20 h-20 rounded-full bg-green-500 opacity-15 pulse" style="animation-delay: 1s;"></div>
<div class="absolute bottom-1/3 right-1/4 w-12 h-12 rounded-full bg-blue-500 opacity-20 pulse" style="animation-delay: 1.5s;"></div>
<!-- Cricket ball floating -->
<div class="absolute top-1/5 right-1/10 w-10 h-10 bg-white rounded-full shadow-lg floating">
<div class="absolute inset-0 bg-white rounded-full flex items-center justify-center">
<div class="w-8 h-8 bg-red-500 rounded-full flex items-center justify-center">
<div class="w-6 h-6 bg-white rounded-full"></div>
</div>
</div>
</div>
<!-- Bat silhouette floating -->
<div class="absolute bottom-1/5 left-1/10 w-6 h-24 bg-gray-300 rounded floating" style="transform: rotate(15deg); animation-delay: 2s;"></div>
</div>
<!-- Navigation -->
<nav class="sticky-nav bg-black bg-opacity-70 py-4 px-6 shadow-lg">
<div class="container mx-auto flex justify-between items-center">
<div class="flex items-center space-x-2">
<i class="fas fa-cricket text-yellow-400 text-2xl"></i>
<span class="text-xl font-bold">CRICKET ELITE</span>
</div>
<div class="hidden md:flex space-x-8">
<a href="#home" class="hover:text-yellow-400 transition">Home</a>
<a href="#products" class="hover:text-yellow-400 transition">Products</a>
<a href="#features" class="hover:text-yellow-400 transition">Features</a>
<a href="#testimonials" class="hover:text-yellow-400 transition">Testimonials</a>
<a href="#contact" class="hover:text-yellow-400 transition">Contact</a>
</div>
<button class="md:hidden text-white">
<i class="fas fa-bars text-2xl"></i>
</button>
</div>
</nav>
<!-- Hero Section -->
<section id="home" class="relative py-20 px-6">
<div class="container mx-auto flex flex-col md:flex-row items-center">
<div class="md:w-1/2 mb-10 md:mb-0 fade-in" style="transform: translateY(50px);">
<h1 class="text-4xl md:text-6xl font-bold mb-6 leading-tight">
<span class="text-yellow-400">Elevate</span> Your Cricket Game
</h1>
<p class="text-lg md:text-xl mb-8 text-gray-300">
Premium cricket equipment engineered for performance. Experience the perfect balance of power and precision with our handcrafted bats and professional-grade balls.
</p>
<div class="flex space-x-4">
<button class="bg-yellow-500 hover:bg-yellow-600 text-black font-bold py-3 px-6 rounded-full transition hover-scale">
Shop Now
</button>
<button class="border-2 border-white hover:border-yellow-400 hover:text-yellow-400 font-bold py-3 px-6 rounded-full transition hover-scale">
Learn More
</button>
</div>
</div>
<div class="md:w-1/2 flex justify-center fade-in" style="transform: translateY(50px);">
<div class="relative w-64 h-64 md:w-80 md:h-80">
<img src="https://images.unsplash.com/photo-1540747913346-19e32dc3e97e?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1000&q=80"
alt="Cricket Bat"
class="absolute w-full h-full object-contain floating">
<div class="absolute -bottom-5 -right-5 w-24 h-24 bg-yellow-500 rounded-full flex items-center justify-center shadow-lg rotating">
<div class="w-20 h-20 bg-red-500 rounded-full flex items-center justify-center">
<div class="w-16 h-16 bg-white rounded-full"></div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Products Section -->
<section id="products" class="py-20 px-6 bg-black bg-opacity-30">
<div class="container mx-auto">
<div class="text-center mb-16 fade-in" style="transform: translateY(50px);">
<h2 class="text-3xl md:text-4xl font-bold mb-4">
Our <span class="text-yellow-400">Premium</span> Collection
</h2>
<p class="max-w-2xl mx-auto text-gray-300">
Handcrafted with precision using the finest materials for optimal performance
</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-10">
<!-- Product 1 -->
<div class="bg-gray-900 bg-opacity-70 rounded-xl p-6 shadow-lg hover:shadow-xl transition fade-in hover-scale" style="transform: translateY(50px);">
<div class="relative h-48 mb-6 overflow-hidden rounded-lg">
<img src="https://images.unsplash.com/photo-1600185365483-26d7a4cc7519?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1000&q=80"
alt="Professional Cricket Bat"
class="w-full h-full object-cover transition-transform duration-500 hover:scale-110">
<div class="absolute inset-0 bg-gradient-to-t from-black to-transparent opacity-70"></div>
<div class="absolute bottom-4 left-4">
<span class="bg-yellow-500 text-black px-3 py-1 rounded-full text-sm font-bold">BESTSELLER</span>
</div>
</div>
<h3 class="text-xl font-bold mb-2">Elite Pro Bat</h3>
<p class="text-gray-300 mb-4">English willow with perfect weight distribution for maximum power and control.</p>
<div class="flex justify-between items-center">
<span class="text-yellow-400 font-bold text-xl">$299</span>
<button class="bg-yellow-500 hover:bg-yellow-600 text-black px-4 py-2 rounded-full text-sm font-bold transition">
Add to Cart
</button>
</div>
</div>
<!-- Product 2 -->
<div class="bg-gray-900 bg-opacity-70 rounded-xl p-6 shadow-lg hover:shadow-xl transition fade-in hover-scale" style="transform: translateY(50px); animation-delay: 0.2s;">
<div class="relative h-48 mb-6 overflow-hidden rounded-lg">
<img src="https://images.unsplash.com/photo-1600185365926-3a2ce3cdb34e?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D3D&auto=format&fit=crop&w=1000&q=80"
alt="Cricket Ball"
class="w-full h-full object-cover transition-transform duration-500 hover:scale-110">
<div class="absolute inset-0 bg-gradient-to-t from-black to-transparent opacity-70"></div>
</div>
<h3 class="text-xl font-bold mb-2">Tournament Ball</h3>
<p class="text-gray-300 mb-4">Premium leather with perfect seam for consistent swing and durability.</p>
<div class="flex justify-between items-center">
<span class="text-yellow-400 font-bold text-xl">$49</span>
<button class="bg-yellow-500 hover:bg-yellow-600 text-black px-4 py-2 rounded-full text-sm font-bold transition">
Add to Cart
</button>
</div>
</div>
<!-- Product 3 -->
<div class="bg-gray-900 bg-opacity-70 rounded-xl p-6 shadow-lg hover:shadow-xl transition fade-in hover-scale" style="transform: translateY(50px); animation-delay: 0.4s;">
<div class="relative h-48 mb-6 overflow-hidden rounded-lg">
<img src="https://images.unsplash.com/photo-1600185369659-d4aadf3e29d3?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1000&q=80"
alt="Batting Gloves"
class="w-full h-full object-cover transition-transform duration-500 hover:scale-110">
<div class="absolute inset-0 bg-gradient-to-t from-black to-transparent opacity-70"></div>
<div class="absolute bottom-4 left-4">
<span class="bg-red-500 text-white px-3 py-1 rounded-full text-sm font-bold">NEW</span>
</div>
</div>
<h3 class="text-xl font-bold mb-2">Pro Guard Gloves</h3>
<p class="text-gray-300 mb-4">Premium protection with enhanced grip and flexibility for perfect bat control.</p>
<div class="flex justify-between items-center">
<span class="text-yellow-400 font-bold text-xl">$89</span>
<button class="bg-yellow-500 hover:bg-yellow-600 text-black px-4 py-2 rounded-full text-sm font-bold transition">
Add to Cart
</button>
</div>
</div>
</div>
</div>
</section>
<!-- Features Section -->
<section id="features" class="py-20 px-6">
<div class="container mx-auto">
<div class="text-center mb-16 fade-in" style="transform: translateY(50px);">
<h2 class="text-3xl md:text-4xl font-bold mb-4">
Why Choose <span class="text-yellow-400">Our</span> Equipment
</h2>
<p class="max-w-2xl mx-auto text-gray-300">
Designed by professionals for professionals and aspiring champions
</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8">
<!-- Feature 1 -->
<div class="bg-gray-900 bg-opacity-50 rounded-xl p-8 shadow-lg hover:shadow-xl transition fade-in hover-scale" style="transform: translateY(50px);">
<div class="w-16 h-16 bg-yellow-500 rounded-full flex items-center justify-center mb-6 mx-auto">
<i class="fas fa-medal text-2xl text-black"></i>
</div>
<h3 class="text-xl font-bold mb-3 text-center">Premium Materials</h3>
<p class="text-gray-300 text-center">
Only the finest English willow and premium leather used in our products, ensuring top-tier performance and durability.
</p>
</div>
<!-- Feature 2 -->
<div class="bg-gray-900 bg-opacity-50 rounded-xl p-8 shadow-lg hover:shadow-xl transition fade-in hover-scale" style="transform: translateY(50px); animation-delay: 0.2s;">
<div class="w-16 h-16 bg-yellow-500 rounded-full flex items-center justify-center mb-6 mx-auto">
<i class="fas fa-cogs text-2xl text-black"></i>
</div>
<h3 class="text-xl font-bold mb-3 text-center">Precision Engineering</h3>
<p class="text-gray-300 text-center">
Scientifically designed for optimal weight distribution, balance, and aerodynamics to enhance your natural playing style.
</p>
</div>
<!-- Feature 3 -->
<div class="bg-gray-900 bg-opacity-50 rounded-xl p-8 shadow-lg hover:shadow-xl transition fade-in hover-scale" style="transform: translateY(50px); animation-delay: 0.4s;">
<div class="w-16 h-16 bg-yellow-500 rounded-full flex items-center justify-center mb-6 mx-auto">
<i class="fas fa-award text-2xl text-black"></i>
</div>
<h3 class="text-xl font-bold mb-3 text-center">Proven Performance</h3>
<p class="text-gray-300 text-center">
Trusted by professional players and coaches worldwide. Our equipment has been tested in all match conditions.
</p>
</div>
</div>
</div>
</section>
<!-- Testimonials Section -->
<section id="testimonials" class="py-20 px-6 bg-black bg-opacity-30">
<div class="container mx-auto">
<div class="text-center mb-16 fade-in" style="transform: translateY(50px);">
<h2 class="text-3xl md:text-4xl font-bold mb-4">
What <span class="text-yellow-400">Players</span> Say
</h2>
<p class="max-w-2xl mx-auto text-gray-300">
Hear from professionals who trust our equipment
</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 gap-8 max-w-5xl mx-auto">
<!-- Testimonial 1 -->
<div class="bg-gray-900 bg-opacity-70 rounded-xl p-8 shadow-lg fade-in hover-scale" style="transform: translateY(50px);">
<div class="flex items-center mb-6">
<img src="https://randomuser.me/api/portraits/men/32.jpg" alt="Player" class="w-16 h-16 rounded-full border-2 border-yellow-500">
<div class="ml-4">
<h4 class="font-bold">David Warner</h4>
<p class="text-yellow-400 text-sm">Australian National Team</p>
</div>
</div>
<p class="text-gray-300 italic">
"The Elite Pro Bat has transformed my game. The perfect weight distribution gives me incredible power without sacrificing control. My six-hitting has improved by 20% since switching to Cricket Elite."
</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-gray-900 bg-opacity-70 rounded-xl p-8 shadow-lg fade-in hover-scale" style="transform: translateY(50px); animation-delay: 0.2s;">
<div class="flex items-center mb-6">
<img src="https://randomuser.me/api/portraits/women/44.jpg" alt="Player" class="w-16 h-16 rounded-full border-2 border-yellow-500">
<div class="ml-4">
<h4 class="font-bold">Ellyse Perry</h4>
<p class="text-yellow-400 text-sm">Australian Women's Team</p>
</div>
</div>
<p class="text-gray-300 italic">
"As an all-rounder, I need equipment that performs in all conditions. Cricket Elite's Tournament Ball maintains its shape and swing even after 40 overs, while their gloves offer protection without restricting movement."
</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>
</div>
</div>
</section>
<!-- Contact Section -->
<section id="contact" class="py-20 px-6">
<div class="container mx-auto max-w-4xl">
<div class="bg-gray-900 bg-opacity-70 rounded-xl p-8 md:p-12 shadow-xl fade-in" style="transform: translateY(50px);">
<div class="text-center mb-12">
<h2 class="text-3xl md:text-4xl font-bold mb-4">
Get In <span class="text-yellow-400">Touch</span>
</h2>
<p class="text-gray-300">
Have questions about our products? Our team is ready to help you choose the perfect equipment for your game.
</p>
</div>
<form class="grid grid-cols-1 md:grid-cols-2 gap-6">
<div>
<label for="name" class="block text-gray-300 mb-2">Name</label>
<input type="text" id="name" class="w-full bg-gray-800 border border-gray-700 rounded-lg px-4 py-3 text-white focus:outline-none focus:ring-2 focus:ring-yellow-500">
</div>
<div>
<label for="email" class="block text-gray-300 mb-2">Email</label>
<input type="email" id="email" class="w-full bg-gray-800 border border-gray-700 rounded-lg px-4 py-3 text-white focus:outline-none focus:ring-2 focus:ring-yellow-500">
</div>
<div class="md:col-span-2">
<label for="subject" class="block text-gray-300 mb-2">Subject</label>
<input type="text" id="subject" class="w-full bg-gray-800 border border-gray-700 rounded-lg px-4 py-3 text-white focus:outline-none focus:ring-2 focus:ring-yellow-500">
</div>
<div class="md:col-span-2">
<label for="message" class="block text-gray-300 mb-2">Message</label>
<textarea id="message" rows="4" class="w-full bg-gray-800 border border-gray-700 rounded-lg px-4 py-3 text-white focus:outline-none focus:ring-2 focus:ring-yellow-500"></textarea>
</div>
<div class="md:col-span-2">
<button type="submit" class="w-full bg-yellow-500 hover:bg-yellow-600 text-black font-bold py-4 px-6 rounded-lg transition hover-scale">
Send Message
</button>
</div>
</form>
</div>
</div>
</section>
<!-- Footer -->
<footer class="bg-black bg-opacity-80 py-12 px-6">
<div class="container mx-auto">
<div class="grid grid-cols-1 md:grid-cols-4 gap-8">
<div>
<div class="flex items-center space-x-2 mb-4">
<i class="fas fa-cricket text-yellow-400 text-2xl"></i>
<span class="text-xl font-bold">CRICKET ELITE</span>
</div>
<p class="text-gray-400">
Premium cricket equipment for professionals and enthusiasts. Elevate your game with our handcrafted bats and professional-grade accessories.
</p>
</div>
<div>
<h4 class="text-lg font-bold mb-4">Quick Links</h4>
<ul class="space-y-2">
<li><a href="#home" class="text-gray-400 hover:text-yellow-400 transition">Home</a></li>
<li><a href="#products" class="text-gray-400 hover:text-yellow-400 transition">Products</a></li>
<li><a href="#features" class="text-gray-400 hover:text-yellow-400 transition">Features</a></li>
<li><a href="#testimonials" class="text-gray-400 hover:text-yellow-400 transition">Testimonials</a></li>
<li><a href="#contact" class="text-gray-400 hover:text-yellow-400 transition">Contact</a></li>
</ul>
</div>
<div>
<h4 class="text-lg font-bold mb-4">Products</h4>
<ul class="space-y-2">
<li><a href="#" class="text-gray-400 hover:text-yellow-400 transition">Cricket Bats</a></li>
<li><a href="#" class="text-gray-400 hover:text-yellow-400 transition">Cricket Balls</a></li>
<li><a href="#" class="text-gray-400 hover:text-yellow-400 transition">Batting Gloves</a></li>
<li><a href="#" class="text-gray-400 hover:text-yellow-400 transition">Protective Gear</a></li>
<li><a href="#" class="text-gray-400 hover:text-yellow-400 transition">Accessories</a></li>
</ul>
</div>
<div>
<h4 class="text-lg font-bold mb-4">Connect With Us</h4>
<div class="flex space-x-4 mb-4">
<a href="#" class="w-10 h-10 bg-gray-800 rounded-full flex items-center justify-center hover:bg-yellow-500 hover:text-black transition">
<i class="fab fa-facebook-f"></i>
</a>
<a href="#" class="w-10 h-10 bg-gray-800 rounded-full flex items-center justify-center hover:bg-yellow-500 hover:text-black transition">
<i class="fab fa-twitter"></i>
</a>
<a href="#" class="w-10 h-10 bg-gray-800 rounded-full flex items-center justify-center hover:bg-yellow-500 hover:text-black transition">
<i class="fab fa-instagram"></i>
</a>
<a href="#" class="w-10 h-10 bg-gray-800 rounded-full flex items-center justify-center hover:bg-yellow-500 hover:text-black transition">
<i class="fab fa-youtube"></i>
</a>
</div>
<p class="text-gray-400">
Subscribe to our newsletter for updates and offers
</p>
<div class="mt-3 flex">
<input type="email" placeholder="Your email" class="bg-gray-800 text-white px-4 py-2 rounded-l-lg focus:outline-none w-full">
<button class="bg-yellow-500 hover:bg-yellow-600 text-black px-4 py-2 rounded-r-lg">
<i class="fas fa-paper-plane"></i>
</button>
</div>
</div>
</div>
<div class="border-t border-gray-800 mt-12 pt-8 text-center text-gray-500">
<p>&copy; 2023 Cricket Elite. All rights reserved.</p>
</div>
</div>
</footer>
<script>
// Scroll animation
document.addEventListener('DOMContentLoaded', function() {
const fadeElements = document.querySelectorAll('.fade-in');
const fadeInObserver = new IntersectionObserver((entries) => {
entries.forEach(entry => {
if (entry.isIntersecting) {
entry.target.classList.add('visible');
}
});
}, {
threshold: 0.1
});
fadeElements.forEach(element => {
fadeInObserver.observe(element);
});
// Smooth scrolling for navigation
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener('click', function (e) {
e.preventDefault();
document.querySelector(this.getAttribute('href')).scrollIntoView({
behavior: 'smooth'
});
});
});
// Hover effect for product cards
const productCards = document.querySelectorAll('.hover-scale');
productCards.forEach(card => {
card.addEventListener('mouseenter', function() {
this.style.transform = 'scale(1.05)';
});
card.addEventListener('mouseleave', function() {
this.style.transform = 'scale(1)';
});
});
});
</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=miiann/cricket-1" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html>