woofier / index.html
ofields's picture
Woof woof - electronic dog collar - Initial Deployment
6f5f5ea verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>WoofWoof - Smart Electronic Dog Collar</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>
.collar-light {
animation: pulse 2s infinite;
}
@keyframes pulse {
0% { opacity: 0.3; }
50% { opacity: 1; }
100% { opacity: 0.3; }
}
.collar-device {
box-shadow: 0 0 20px rgba(74, 222, 128, 0.5);
}
.feature-icon {
transition: all 0.3s ease;
}
.feature-card:hover .feature-icon {
transform: scale(1.1);
color: #4ade80;
}
</style>
</head>
<body class="bg-gray-50">
<!-- Navigation -->
<nav class="bg-white shadow-lg">
<div class="max-w-6xl mx-auto px-4">
<div class="flex justify-between items-center py-4">
<div class="flex items-center space-x-4">
<i class="fas fa-dog text-3xl text-green-500"></i>
<span class="font-bold text-xl text-gray-800">WoofWoof</span>
</div>
<div class="hidden md:flex items-center space-x-8">
<a href="#features" class="text-gray-800 hover:text-green-500">Features</a>
<a href="#how-it-works" class="text-gray-800 hover:text-green-500">How It Works</a>
<a href="#testimonials" class="text-gray-800 hover:text-green-500">Testimonials</a>
<a href="#pricing" class="text-gray-800 hover:text-green-500">Pricing</a>
</div>
<div>
<button class="bg-green-500 hover:bg-green-600 text-white px-4 py-2 rounded-full font-medium transition duration-300">
Pre-order Now
</button>
</div>
</div>
</div>
</nav>
<!-- Hero Section -->
<section class="py-16 px-4">
<div class="max-w-6xl mx-auto grid md:grid-cols-2 gap-12 items-center">
<div>
<h1 class="text-4xl md:text-5xl font-bold text-gray-800 mb-6">The Future of <span class="text-green-500">Dog Training</span> is Here</h1>
<p class="text-lg text-gray-600 mb-8">WoofWoof smart collar combines GPS tracking, activity monitoring, and safe training features to keep your furry friend happy and healthy.</p>
<div class="flex flex-col sm:flex-row gap-4">
<button class="bg-green-500 hover:bg-green-600 text-white px-6 py-3 rounded-full font-medium text-lg transition duration-300 flex items-center justify-center">
<i class="fas fa-shopping-cart mr-2"></i> Order Now
</button>
<button class="border-2 border-green-500 text-green-500 hover:bg-green-50 px-6 py-3 rounded-full font-medium text-lg transition duration-300 flex items-center justify-center">
<i class="fas fa-play-circle mr-2"></i> Watch Demo
</button>
</div>
</div>
<div class="relative flex justify-center">
<div class="bg-white rounded-3xl p-8 shadow-xl relative z-10 max-w-md w-full">
<div class="bg-gray-100 rounded-2xl p-6 relative">
<!-- Collar device -->
<div class="collar-device bg-gray-800 rounded-lg p-4 mx-auto w-3/4 h-48 flex flex-col items-center justify-between">
<div class="w-full flex justify-between items-start">
<div class="collar-light w-3 h-3 rounded-full bg-green-500"></div>
<div class="text-xs text-white">WOOFWOOF</div>
<div class="collar-light w-3 h-3 rounded-full bg-green-500"></div>
</div>
<div class="text-center">
<div class="text-white text-sm mb-1">Battery: 100%</div>
<div class="text-green-500 text-lg font-bold">Connected</div>
</div>
<div class="w-full h-8 bg-gray-700 rounded-full flex items-center px-2">
<div class="w-1/4 h-4 rounded-full bg-green-500"></div>
</div>
</div>
<!-- Collar strap -->
<div class="mt-6 flex justify-between">
<div class="w-16 h-8 bg-gray-300 rounded-l-full"></div>
<div class="w-16 h-8 bg-gray-300 rounded-r-full"></div>
</div>
</div>
<div class="mt-6 grid grid-cols-3 gap-4">
<div class="text-center">
<div class="text-green-500 font-bold text-xl">500m</div>
<div class="text-gray-500 text-sm">Range</div>
</div>
<div class="text-center">
<div class="text-green-500 font-bold text-xl">30d</div>
<div class="text-gray-500 text-sm">Battery Life</div>
</div>
<div class="text-center">
<div class="text-green-500 font-bold text-xl">100%</div>
<div class="text-gray-500 text-sm">Waterproof</div>
</div>
</div>
</div>
<div class="absolute -bottom-8 -right-8 w-64 h-64 bg-green-100 rounded-full opacity-30"></div>
</div>
</div>
</section>
<!-- Features Section -->
<section id="features" class="py-16 px-4 bg-white">
<div class="max-w-6xl mx-auto">
<div class="text-center mb-16">
<h2 class="text-3xl font-bold text-gray-800 mb-4">Smart Features for <span class="text-green-500">Smart Dogs</span></h2>
<p class="text-gray-600 max-w-2xl mx-auto">WoofWoof collar is packed with innovative features to make dog ownership easier and more enjoyable.</p>
</div>
<div class="grid md:grid-cols-2 lg:grid-cols-3 gap-8">
<!-- Feature 1 -->
<div class="feature-card bg-gray-50 rounded-xl p-6 hover:shadow-lg transition duration-300">
<div class="w-16 h-16 bg-green-100 rounded-full flex items-center justify-center mb-4">
<i class="fas fa-map-marker-alt feature-icon text-2xl text-green-500"></i>
</div>
<h3 class="text-xl font-bold text-gray-800 mb-2">Real-time GPS Tracking</h3>
<p class="text-gray-600">Never lose your dog again with precise location tracking and geofencing alerts.</p>
</div>
<!-- Feature 2 -->
<div class="feature-card bg-gray-50 rounded-xl p-6 hover:shadow-lg transition duration-300">
<div class="w-16 h-16 bg-green-100 rounded-full flex items-center justify-center mb-4">
<i class="fas fa-heartbeat feature-icon text-2xl text-green-500"></i>
</div>
<h3 class="text-xl font-bold text-gray-800 mb-2">Health Monitoring</h3>
<p class="text-gray-600">Track activity levels, calories burned, and sleep patterns for optimal health.</p>
</div>
<!-- Feature 3 -->
<div class="feature-card bg-gray-50 rounded-xl p-6 hover:shadow-lg transition duration-300">
<div class="w-16 h-16 bg-green-100 rounded-full flex items-center justify-center mb-4">
<i class="fas fa-bell feature-icon text-2xl text-green-500"></i>
</div>
<h3 class="text-xl font-bold text-gray-800 mb-2">Safe Training</h3>
<p class="text-gray-600">Gentle vibration and sound cues for effective, humane behavior training.</p>
</div>
<!-- Feature 4 -->
<div class="feature-card bg-gray-50 rounded-xl p-6 hover:shadow-lg transition duration-300">
<div class="w-16 h-16 bg-green-100 rounded-full flex items-center justify-center mb-4">
<i class="fas fa-mobile-alt feature-icon text-2xl text-green-500"></i>
</div>
<h3 class="text-xl font-bold text-gray-800 mb-2">Smartphone App</h3>
<p class="text-gray-600">Control all features from your phone with our intuitive companion app.</p>
</div>
<!-- Feature 5 -->
<div class="feature-card bg-gray-50 rounded-xl p-6 hover:shadow-lg transition duration-300">
<div class="w-16 h-16 bg-green-100 rounded-full flex items-center justify-center mb-4">
<i class="fas fa-shield-alt feature-icon text-2xl text-green-500"></i>
</div>
<h3 class="text-xl font-bold text-gray-800 mb-2">Durable Design</h3>
<p class="text-gray-600">Military-grade materials withstand even the most active dogs' adventures.</p>
</div>
<!-- Feature 6 -->
<div class="feature-card bg-gray-50 rounded-xl p-6 hover:shadow-lg transition duration-300">
<div class="w-16 h-16 bg-green-100 rounded-full flex items-center justify-center mb-4">
<i class="fas fa-battery-full feature-icon text-2xl text-green-500"></i>
</div>
<h3 class="text-xl font-bold text-gray-800 mb-2">Long Battery Life</h3>
<p class="text-gray-600">Up to 30 days on a single charge with our energy-efficient technology.</p>
</div>
</div>
</div>
</section>
<!-- How It Works Section -->
<section id="how-it-works" class="py-16 px-4 bg-gray-50">
<div class="max-w-6xl mx-auto">
<div class="text-center mb-16">
<h2 class="text-3xl font-bold text-gray-800 mb-4">How <span class="text-green-500">WoofWoof</span> Works</h2>
<p class="text-gray-600 max-w-2xl mx-auto">Simple setup, powerful results. Get started in just minutes.</p>
</div>
<div class="grid md:grid-cols-3 gap-8">
<!-- Step 1 -->
<div class="text-center">
<div class="w-20 h-20 bg-green-500 rounded-full flex items-center justify-center mx-auto mb-6 text-white text-2xl font-bold">1</div>
<h3 class="text-xl font-bold text-gray-800 mb-2">Charge & Attach</h3>
<p class="text-gray-600">Charge your WoofWoof collar and securely attach it to your dog's existing collar.</p>
</div>
<!-- Step 2 -->
<div class="text-center">
<div class="w-20 h-20 bg-green-500 rounded-full flex items-center justify-center mx-auto mb-6 text-white text-2xl font-bold">2</div>
<h3 class="text-xl font-bold text-gray-800 mb-2">Download App</h3>
<p class="text-gray-600">Download the WoofWoof companion app from the App Store or Google Play.</p>
</div>
<!-- Step 3 -->
<div class="text-center">
<div class="w-20 h-20 bg-green-500 rounded-full flex items-center justify-center mx-auto mb-6 text-white text-2xl font-bold">3</div>
<h3 class="text-xl font-bold text-gray-800 mb-2">Connect & Customize</h3>
<p class="text-gray-600">Pair your device and customize settings for your dog's needs and personality.</p>
</div>
</div>
<div class="mt-16 bg-white rounded-xl shadow-lg overflow-hidden">
<div class="md:flex">
<div class="md:w-1/2 p-8 md:p-12 flex flex-col justify-center">
<h3 class="text-2xl font-bold text-gray-800 mb-4">See WoofWoof in Action</h3>
<p class="text-gray-600 mb-6">Our demo video shows how easy it is to train your dog with gentle, effective methods while keeping them safe with GPS tracking.</p>
<button class="bg-green-500 hover:bg-green-600 text-white px-6 py-3 rounded-full font-medium transition duration-300 w-fit">
<i class="fas fa-play mr-2"></i> Watch Demo
</button>
</div>
<div class="md:w-1/2 bg-gray-100 flex items-center justify-center p-8">
<div class="relative w-full h-64 md:h-full bg-gray-300 rounded-lg overflow-hidden flex items-center justify-center">
<i class="fas fa-play-circle text-5xl text-green-500 opacity-80"></i>
<div class="absolute inset-0 border-4 border-green-500 rounded-lg m-2 pointer-events-none"></div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Testimonials Section -->
<section id="testimonials" class="py-16 px-4 bg-white">
<div class="max-w-6xl mx-auto">
<div class="text-center mb-16">
<h2 class="text-3xl font-bold text-gray-800 mb-4">Happy Dogs, <span class="text-green-500">Happy Owners</span></h2>
<p class="text-gray-600 max-w-2xl mx-auto">Don't just take our word for it - hear from our satisfied customers.</p>
</div>
<div class="grid md:grid-cols-2 lg:grid-cols-3 gap-8">
<!-- Testimonial 1 -->
<div class="bg-gray-50 rounded-xl p-6">
<div class="flex items-center mb-4">
<div class="w-12 h-12 rounded-full bg-gray-300 overflow-hidden mr-4">
<img src="https://randomuser.me/api/portraits/women/43.jpg" alt="Sarah J." class="w-full h-full object-cover">
</div>
<div>
<h4 class="font-bold text-gray-800">Sarah J.</h4>
<div class="flex 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>
<p class="text-gray-600 italic">"My escape artist beagle hasn't gotten lost once since we got the WoofWoof collar. The geofence alerts give me peace of mind!"</p>
</div>
<!-- Testimonial 2 -->
<div class="bg-gray-50 rounded-xl p-6">
<div class="flex items-center mb-4">
<div class="w-12 h-12 rounded-full bg-gray-300 overflow-hidden mr-4">
<img src="https://randomuser.me/api/portraits/men/32.jpg" alt="Michael T." class="w-full h-full object-cover">
</div>
<div>
<h4 class="font-bold text-gray-800">Michael T.</h4>
<div class="flex 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>
<p class="text-gray-600 italic">"Training my stubborn bulldog was impossible until WoofWoof. The vibration cues got his attention without hurting him."</p>
</div>
<!-- Testimonial 3 -->
<div class="bg-gray-50 rounded-xl p-6">
<div class="flex items-center mb-4">
<div class="w-12 h-12 rounded-full bg-gray-300 overflow-hidden mr-4">
<img src="https://randomuser.me/api/portraits/women/65.jpg" alt="Emily R." class="w-full h-full object-cover">
</div>
<div>
<h4 class="font-bold text-gray-800">Emily R.</h4>
<div class="flex 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>
<p class="text-gray-600 italic">"The activity tracking helped me realize my senior dog wasn't getting enough exercise. We've both become more active together!"</p>
</div>
</div>
</div>
</section>
<!-- Pricing Section -->
<section id="pricing" class="py-16 px-4 bg-gray-50">
<div class="max-w-6xl mx-auto">
<div class="text-center mb-16">
<h2 class="text-3xl font-bold text-gray-800 mb-4">Simple, <span class="text-green-500">Transparent</span> Pricing</h2>
<p class="text-gray-600 max-w-2xl mx-auto">Choose the plan that works for you and your furry friend.</p>
</div>
<div class="grid md:grid-cols-3 gap-8 max-w-5xl mx-auto">
<!-- Basic Plan -->
<div class="bg-white rounded-xl shadow-lg overflow-hidden">
<div class="p-6 border-b border-gray-200">
<h3 class="text-xl font-bold text-gray-800 mb-1">Basic</h3>
<p class="text-gray-600 text-sm">Perfect for occasional training</p>
</div>
<div class="p-6">
<div class="text-4xl font-bold text-gray-800 mb-4">$79<span class="text-lg text-gray-500">/one-time</span></div>
<ul class="space-y-3 mb-8">
<li class="flex items-center text-gray-600">
<i class="fas fa-check text-green-500 mr-2"></i> GPS Tracking
</li>
<li class="flex items-center text-gray-600">
<i class="fas fa-check text-green-500 mr-2"></i> Vibration Training
</li>
<li class="flex items-center text-gray-600">
<i class="fas fa-check text-green-500 mr-2"></i> Basic Activity Tracking
</li>
<li class="flex items-center text-gray-400">
<i class="fas fa-times text-red-400 mr-2"></i> Geofencing
</li>
<li class="flex items-center text-gray-400">
<i class="fas fa-times text-red-400 mr-2"></i> Health Monitoring
</li>
</ul>
<button class="w-full bg-gray-200 hover:bg-gray-300 text-gray-800 py-3 rounded-lg font-medium transition duration-300">
Get Started
</button>
</div>
</div>
<!-- Popular Plan -->
<div class="bg-white rounded-xl shadow-xl overflow-hidden transform md:scale-105 relative">
<div class="absolute top-0 right-0 bg-green-500 text-white text-xs font-bold px-3 py-1 rounded-bl-lg">
MOST POPULAR
</div>
<div class="p-6 border-b border-gray-200">
<h3 class="text-xl font-bold text-gray-800 mb-1">Premium</h3>
<p class="text-gray-600 text-sm">Best for active dogs</p>
</div>
<div class="p-6">
<div class="text-4xl font-bold text-gray-800 mb-4">$129<span class="text-lg text-gray-500">/one-time</span></div>
<ul class="space-y-3 mb-8">
<li class="flex items-center text-gray-600">
<i class="fas fa-check text-green-500 mr-2"></i> Advanced GPS Tracking
</li>
<li class="flex items-center text-gray-600">
<i class="fas fa-check text-green-500 mr-2"></i> Vibration & Sound Training
</li>
<li class="flex items-center text-gray-600">
<i class="fas fa-check text-green-500 mr-2"></i> Detailed Activity Tracking
</li>
<li class="flex items-center text-gray-600">
<i class="fas fa-check text-green-500 mr-2"></i> Geofencing
</li>
<li class="flex items-center text-gray-600">
<i class="fas fa-check text-green-500 mr-2"></i> Basic Health Monitoring
</li>
</ul>
<button class="w-full bg-green-500 hover:bg-green-600 text-white py-3 rounded-lg font-medium transition duration-300">
Get Started
</button>
</div>
</div>
<!-- Pro Plan -->
<div class="bg-white rounded-xl shadow-lg overflow-hidden">
<div class="p-6 border-b border-gray-200">
<h3 class="text-xl font-bold text-gray-800 mb-1">Pro</h3>
<p class="text-gray-600 text-sm">For the ultimate dog care</p>
</div>
<div class="p-6">
<div class="text-4xl font-bold text-gray-800 mb-4">$199<span class="text-lg text-gray-500">/one-time</span></div>
<ul class="space-y-3 mb-8">
<li class="flex items-center text-gray-600">
<i class="fas fa-check text-green-500 mr-2"></i> Real-time GPS Tracking
</li>
<li class="flex items-center text-gray-600">
<i class="fas fa-check text-green-500 mr-2"></i> Multi-mode Training
</li>
<li class="flex items-center text-gray-600">
<i class="fas fa-check text-green-500 mr-2"></i> Comprehensive Activity Tracking
</li>
<li class="flex items-center text-gray-600">
<i class="fas fa-check text-green-500 mr-2"></i> Smart Geofencing
</li>
<li class="flex items-center text-gray-600">
<i class="fas fa-check text-green-500 mr-2"></i> Advanced Health Monitoring
</li>
</ul>
<button class="w-full bg-gray-200 hover:bg-gray-300 text-gray-800 py-3 rounded-lg font-medium transition duration-300">
Get Started
</button>
</div>
</div>
</div>
</div>
</section>
<!-- FAQ Section -->
<section class="py-16 px-4 bg-white">
<div class="max-w-3xl mx-auto">
<div class="text-center mb-16">
<h2 class="text-3xl font-bold text-gray-800 mb-4">Frequently Asked <span class="text-green-500">Questions</span></h2>
<p class="text-gray-600">Everything you need to know about WoofWoof smart collar.</p>
</div>
<div class="space-y-4">
<!-- FAQ Item 1 -->
<div class="border border-gray-200 rounded-lg overflow-hidden">
<button class="faq-toggle w-full flex justify-between items-center p-4 text-left font-medium text-gray-800 hover:bg-gray-50 transition duration-300">
<span>Is the WoofWoof collar safe for my dog?</span>
<i class="fas fa-chevron-down transition-transform duration-300"></i>
</button>
<div class="faq-content hidden p-4 pt-0 text-gray-600">
Absolutely! WoofWoof uses only gentle vibration and sound cues for training, not electric shocks. Our collar is veterinarian-approved and made from hypoallergenic materials that are safe for all dog breeds.
</div>
</div>
<!-- FAQ Item 2 -->
<div class="border border-gray-200 rounded-lg overflow-hidden">
<button class="faq-toggle w-full flex justify-between items-center p-4 text-left font-medium text-gray-800 hover:bg-gray-50 transition duration-300">
<span>How long does the battery last?</span>
<i class="fas fa-chevron-down transition-transform duration-300"></i>
</button>
<div class="faq-content hidden p-4 pt-0 text-gray-600">
The battery lasts up to 30 days with normal use (GPS tracking 3x/day and occasional training). With heavy GPS use (real-time tracking), expect about 7-10 days. The collar charges fully in just 2 hours via USB-C.
</div>
</div>
<!-- FAQ Item 3 -->
<div class="border border-gray-200 rounded-lg overflow-hidden">
<button class="faq-toggle w-full flex justify-between items-center p-4 text-left font-medium text-gray-800 hover:bg-gray-50 transition duration-300">
<span>What's the range of the training features?</span>
<i class="fas fa-chevron-down transition-transform duration-300"></i>
</button>
<div class="faq-content hidden p-4 pt-0 text-gray-600">
The training features work up to 500 meters (1640 feet) in open areas. The range may be less in urban environments with many obstacles. GPS tracking works anywhere with cellular coverage.
</div>
</div>
<!-- FAQ Item 4 -->
<div class="border border-gray-200 rounded-lg overflow-hidden">
<button class="faq-toggle w-full flex justify-between items-center p-4 text-left font-medium text-gray-800 hover:bg-gray-50 transition duration-300">
<span>Is there a subscription fee?</span>
<i class="fas fa-chevron-down transition-transform duration-300"></i>
</button>
<div class="faq-content hidden p-4 pt-0 text-gray-600">
No subscription is required for basic features. Premium GPS services with real-time tracking and extended history require a $4.99/month plan, which you can cancel anytime.
</div>
</div>
<!-- FAQ Item 5 -->
<div class="border border-gray-200 rounded-lg overflow-hidden">
<button class="faq-toggle w-full flex justify-between items-center p-4 text-left font-medium text-gray-800 hover:bg-gray-50 transition duration-300">
<span>What's your return policy?</span>
<i class="fas fa-chevron-down transition-transform duration-300"></i>
</button>
<div class="faq-content hidden p-4 pt-0 text-gray-600">
We offer a 60-day money-back guarantee. If you're not completely satisfied with your WoofWoof collar, simply return it in original condition for a full refund.
</div>
</div>
</div>
</div>
</section>
<!-- CTA Section -->
<section class="py-16 px-4 bg-green-600 text-white">
<div class="max-w-4xl mx-auto text-center">
<h2 class="text-3xl font-bold mb-6">Ready to Transform Your Dog's Life?</h2>
<p class="text-xl mb-8 opacity-90">Join thousands of happy dogs and owners who trust WoofWoof for safe, effective training and peace of mind.</p>
<div class="flex flex-col sm:flex-row justify-center gap-4">
<button class="bg-white hover:bg-gray-100 text-green-600 px-8 py-4 rounded-full font-bold text-lg transition duration-300">
Order Now
</button>
<button class="border-2 border-white hover:bg-green-700 text-white px-8 py-4 rounded-full font-bold text-lg transition duration-300">
Contact Us
</button>
</div>
</div>
</section>
<!-- Footer -->
<footer class="bg-gray-900 text-white py-12 px-4">
<div class="max-w-6xl mx-auto grid md:grid-cols-4 gap-8">
<div>
<div class="flex items-center space-x-2 mb-4">
<i class="fas fa-dog text-2xl text-green-500"></i>
<span class="font-bold text-xl">WoofWoof</span>
</div>
<p class="text-gray-400">Innovative dog technology for modern pet owners.</p>
<div class="flex space-x-4 mt-6">
<a href="#" class="text-gray-400 hover:text-white"><i class="fab fa-facebook-f"></i></a>
<a href="#" class="text-gray-400 hover:text-white"><i class="fab fa-twitter"></i></a>
<a href="#" class="text-gray-400 hover:text-white"><i class="fab fa-instagram"></i></a>
<a href="#" class="text-gray-400 hover:text-white"><i class="fab fa-youtube"></i></a>
</div>
</div>
<div>
<h4 class="font-bold text-lg mb-4">Products</h4>
<ul class="space-y-2">
<li><a href="#" class="text-gray-400 hover:text-white">Smart Collar</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Accessories</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Mobile App</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Gift Cards</a></li>
</ul>
</div>
<div>
<h4 class="font-bold text-lg mb-4">Support</h4>
<ul class="space-y-2">
<li><a href="#" class="text-gray-400 hover:text-white">Help Center</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Contact Us</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Shipping & Returns</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Warranty</a></li>
</ul>
</div>
<div>
<h4 class="font-bold text-lg mb-4">Company</h4>
<ul class="space-y-2">
<li><a href="#" class="text-gray-400 hover:text-white">About Us</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Careers</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Press</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Blog</a></li>
</ul>
</div>
</div>
<div class="max-w-6xl mx-auto border-t border-gray-800 mt-12 pt-8 flex flex-col md:flex-row justify-between items-center">
<p class="text-gray-400 text-sm mb-4 md:mb-0">© 2023 WoofWoof Technologies. All rights reserved.</p>
<div class="flex space-x-6">
<a href="#" class="text-gray-400 hover:text-white text-sm">Privacy Policy</a>
<a href="#" class="text-gray-400 hover:text-white text-sm">Terms of Service</a>
<a href="#" class="text-gray-400 hover:text-white text-sm">Cookie Policy</a>
</div>
</div>
</footer>
<script>
// FAQ toggle functionality
document.querySelectorAll('.faq-toggle').forEach(button => {
button.addEventListener('click', () => {
const content = button.nextElementSibling;
const icon = button.querySelector('i');
// Toggle content visibility
content.classList.toggle('hidden');
// Rotate icon
if (content.classList.contains('hidden')) {
icon.style.transform = 'rotate(0deg)';
} else {
icon.style.transform = 'rotate(180deg)';
}
});
});
// Simulate collar light animation
function animateCollarLights() {
const lights = document.querySelectorAll('.collar-light');
lights.forEach((light, index) => {
// Stagger the animation for each light
light.style.animationDelay = `${index * 0.3}s`;
});
}
// Initialize animations when page loads
window.addEventListener('DOMContentLoaded', () => {
animateCollarLights();
});
</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=ofields/woofier" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html>