Spaces:
Running
Running
File size: 25,287 Bytes
a186323 |
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 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>BarkBuddy - Dog Barking Solutions</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>
.dog-bg {
background-image: url('https://images.unsplash.com/photo-1586671267731-da2cf3ceeb80?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1498&q=80');
background-size: cover;
background-position: center;
background-attachment: fixed;
}
.bark-btn {
transition: all 0.3s ease;
}
.bark-btn:hover {
transform: scale(1.05);
box-shadow: 0 10px 25px rgba(234, 179, 8, 0.4);
}
.bark-animation {
animation: bark 0.5s ease infinite alternate;
}
@keyframes bark {
0% { transform: translateY(0); }
100% { transform: translateY(-5px); }
}
.dog-icon {
transition: all 0.3s ease;
}
.dog-icon:hover {
transform: rotate(15deg);
}
</style>
</head>
<body class="font-sans bg-gray-100">
<!-- Navigation -->
<nav class="bg-white shadow-lg sticky top-0 z-50">
<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-amber-500 text-3xl"></i>
<span class="font-bold text-gray-800 text-xl">BarkBuddy</span>
</div>
<div class="hidden md:flex items-center space-x-8">
<a href="#solutions" class="text-gray-700 hover:text-amber-500 transition">Solutions</a>
<a href="#about" class="text-gray-700 hover:text-amber-500 transition">About</a>
<a href="#testimonials" class="text-gray-700 hover:text-amber-500 transition">Testimonials</a>
<a href="#contact" class="text-gray-700 hover:text-amber-500 transition">Contact</a>
</div>
<button class="md:hidden text-gray-700 focus:outline-none">
<i class="fas fa-bars text-2xl"></i>
</button>
</div>
</div>
</nav>
<!-- Hero Section -->
<section class="dog-bg relative h-screen flex items-center justify-center">
<div class="absolute inset-0 bg-black bg-opacity-40"></div>
<div class="relative z-10 text-center px-4">
<h1 class="text-4xl md:text-6xl font-bold text-white mb-6">Stop Excessive Dog Barking</h1>
<p class="text-xl md:text-2xl text-white mb-8 max-w-2xl mx-auto">Humane and effective solutions to bring peace back to your home</p>
<div class="flex flex-col sm:flex-row justify-center gap-4">
<button id="barkBtn" class="bark-btn bg-amber-500 hover:bg-amber-600 text-white font-bold py-3 px-8 rounded-full text-lg flex items-center justify-center gap-2">
<i class="fas fa-volume-up"></i> Hear Barking Demo
</button>
<button class="bark-btn bg-white hover:bg-gray-100 text-gray-800 font-bold py-3 px-8 rounded-full text-lg flex items-center justify-center gap-2">
<i class="fas fa-book-open"></i> Learn More
</button>
</div>
</div>
</section>
<!-- Solutions Section -->
<section id="solutions" class="py-20 bg-white">
<div class="max-w-6xl mx-auto px-4">
<h2 class="text-3xl md:text-4xl font-bold text-center text-gray-800 mb-16">Our Barking Solutions</h2>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8">
<!-- Solution 1 -->
<div class="bg-gray-50 rounded-xl p-6 shadow-md hover:shadow-lg transition">
<div class="text-amber-500 text-4xl mb-4">
<i class="fas fa-graduation-cap"></i>
</div>
<h3 class="text-xl font-bold text-gray-800 mb-3">Training Programs</h3>
<p class="text-gray-600 mb-4">Professional training techniques to teach your dog when it's appropriate to bark and when to be quiet.</p>
<button class="text-amber-500 font-semibold hover:text-amber-600 flex items-center gap-2">
Learn More <i class="fas fa-arrow-right"></i>
</button>
</div>
<!-- Solution 2 -->
<div class="bg-gray-50 rounded-xl p-6 shadow-md hover:shadow-lg transition">
<div class="text-amber-500 text-4xl mb-4">
<i class="fas fa-bell"></i>
</div>
<h3 class="text-xl font-bold text-gray-800 mb-3">Smart Devices</h3>
<p class="text-gray-600 mb-4">High-tech bark collars and ultrasonic devices that gently correct barking without harm.</p>
<button class="text-amber-500 font-semibold hover:text-amber-600 flex items-center gap-2">
Learn More <i class="fas fa-arrow-right"></i>
</button>
</div>
<!-- Solution 3 -->
<div class="bg-gray-50 rounded-xl p-6 shadow-md hover:shadow-lg transition">
<div class="text-amber-500 text-4xl mb-4">
<i class="fas fa-home"></i>
</div>
<h3 class="text-xl font-bold text-gray-800 mb-3">Home Environment</h3>
<p class="text-gray-600 mb-4">Solutions to reduce triggers in your home environment that cause excessive barking.</p>
<button class="text-amber-500 font-semibold hover:text-amber-600 flex items-center gap-2">
Learn More <i class="fas fa-arrow-right"></i>
</button>
</div>
</div>
</div>
</section>
<!-- About Section -->
<section id="about" class="py-20 bg-gray-100">
<div class="max-w-6xl mx-auto px-4">
<div class="flex flex-col md:flex-row items-center gap-12">
<div class="md:w-1/2">
<img src="https://images.unsplash.com/photo-1534361960057-19889db9621e?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80"
alt="Happy dog with owner"
class="rounded-xl shadow-lg w-full h-auto">
</div>
<div class="md:w-1/2">
<h2 class="text-3xl md:text-4xl font-bold text-gray-800 mb-6">Why Dogs Bark & How We Help</h2>
<p class="text-gray-600 mb-6">Dogs bark for many reasons - alerting, anxiety, boredom, or simply because they're excited. While barking is natural, excessive barking can disrupt your life and annoy neighbors.</p>
<p class="text-gray-600 mb-8">At BarkBuddy, we understand that every dog is unique. Our team of certified trainers and animal behaviorists create customized solutions that address the root cause of your dog's barking without harsh methods.</p>
<div class="flex flex-col sm:flex-row gap-4">
<button class="bg-amber-500 hover:bg-amber-600 text-white font-bold py-3 px-6 rounded-full">
Meet Our Team
</button>
<button class="border border-amber-500 text-amber-500 hover:bg-amber-50 font-bold py-3 px-6 rounded-full">
Our Philosophy
</button>
</div>
</div>
</div>
</div>
</section>
<!-- Testimonials Section -->
<section id="testimonials" class="py-20 bg-white">
<div class="max-w-6xl mx-auto px-4">
<h2 class="text-3xl md:text-4xl font-bold text-center text-gray-800 mb-16">Success Stories</h2>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
<!-- Testimonial 1 -->
<div class="bg-gray-50 rounded-xl p-6 shadow-md">
<div class="flex items-center mb-4">
<div class="text-amber-500 text-2xl mr-2">
<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>
<p class="text-gray-600 mb-6">"After just two weeks with BarkBuddy's training program, my German Shepherd went from constant barking to only alerting when necessary. Life-changing!"</p>
<div class="flex items-center">
<img src="https://randomuser.me/api/portraits/women/43.jpg" alt="Sarah J." class="w-12 h-12 rounded-full mr-4">
<div>
<h4 class="font-bold text-gray-800">Sarah J.</h4>
<p class="text-gray-500 text-sm">Dog Owner</p>
</div>
</div>
</div>
<!-- Testimonial 2 -->
<div class="bg-gray-50 rounded-xl p-6 shadow-md">
<div class="flex items-center mb-4">
<div class="text-amber-500 text-2xl mr-2">
<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>
<p class="text-gray-600 mb-6">"The ultrasonic device worked wonders for my Beagle's separation anxiety barking. No more complaints from neighbors and my dog is much happier."</p>
<div class="flex items-center">
<img src="https://randomuser.me/api/portraits/men/32.jpg" alt="Michael T." class="w-12 h-12 rounded-full mr-4">
<div>
<h4 class="font-bold text-gray-800">Michael T.</h4>
<p class="text-gray-500 text-sm">Apartment Resident</p>
</div>
</div>
</div>
<!-- Testimonial 3 -->
<div class="bg-gray-50 rounded-xl p-6 shadow-md">
<div class="flex items-center mb-4">
<div class="text-amber-500 text-2xl mr-2">
<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>
<p class="text-gray-600 mb-6">"As a veterinarian, I recommend BarkBuddy to clients because their methods are humane and effective. The team truly understands dog behavior."</p>
<div class="flex items-center">
<img src="https://randomuser.me/api/portraits/women/65.jpg" alt="Dr. Lisa R." class="w-12 h-12 rounded-full mr-4">
<div>
<h4 class="font-bold text-gray-800">Dr. Lisa R.</h4>
<p class="text-gray-500 text-sm">Veterinarian</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- CTA Section -->
<section class="py-16 bg-amber-500">
<div class="max-w-4xl mx-auto px-4 text-center">
<h2 class="text-3xl md:text-4xl font-bold text-white mb-6">Ready for a Quieter Home?</h2>
<p class="text-xl text-white mb-8">Take our 2-minute quiz to get personalized recommendations for your dog's barking.</p>
<button class="bg-white hover:bg-gray-100 text-amber-500 font-bold py-4 px-12 rounded-full text-lg">
Start the Quiz Now
</button>
</div>
</section>
<!-- Contact Section -->
<section id="contact" class="py-20 bg-gray-100">
<div class="max-w-6xl mx-auto px-4">
<h2 class="text-3xl md:text-4xl font-bold text-center text-gray-800 mb-16">Get In Touch</h2>
<div class="flex flex-col md:flex-row gap-12">
<div class="md:w-1/2">
<form class="space-y-6">
<div>
<label for="name" class="block text-gray-700 font-medium mb-2">Your Name</label>
<input type="text" id="name" class="w-full px-4 py-3 rounded-lg border border-gray-300 focus:outline-none focus:ring-2 focus:ring-amber-500">
</div>
<div>
<label for="email" class="block text-gray-700 font-medium mb-2">Email Address</label>
<input type="email" id="email" class="w-full px-4 py-3 rounded-lg border border-gray-300 focus:outline-none focus:ring-2 focus:ring-amber-500">
</div>
<div>
<label for="dog" class="block text-gray-700 font-medium mb-2">Dog's Breed (Optional)</label>
<input type="text" id="dog" class="w-full px-4 py-3 rounded-lg border border-gray-300 focus:outline-none focus:ring-2 focus:ring-amber-500">
</div>
<div>
<label for="message" class="block text-gray-700 font-medium mb-2">Your Message</label>
<textarea id="message" rows="5" class="w-full px-4 py-3 rounded-lg border border-gray-300 focus:outline-none focus:ring-2 focus:ring-amber-500"></textarea>
</div>
<button type="submit" class="w-full bg-amber-500 hover:bg-amber-600 text-white font-bold py-3 px-6 rounded-lg">
Send Message
</button>
</form>
</div>
<div class="md:w-1/2">
<div class="bg-white rounded-xl p-8 shadow-md h-full">
<h3 class="text-2xl font-bold text-gray-800 mb-6">Contact Information</h3>
<div class="space-y-6">
<div class="flex items-start">
<div class="text-amber-500 text-xl mt-1 mr-4">
<i class="fas fa-map-marker-alt"></i>
</div>
<div>
<h4 class="font-bold text-gray-800">Our Location</h4>
<p class="text-gray-600">123 Bark Avenue, Dogtown, DT 12345</p>
</div>
</div>
<div class="flex items-start">
<div class="text-amber-500 text-xl mt-1 mr-4">
<i class="fas fa-phone-alt"></i>
</div>
<div>
<h4 class="font-bold text-gray-800">Call Us</h4>
<p class="text-gray-600">(555) 123-4567</p>
</div>
</div>
<div class="flex items-start">
<div class="text-amber-500 text-xl mt-1 mr-4">
<i class="fas fa-envelope"></i>
</div>
<div>
<h4 class="font-bold text-gray-800">Email Us</h4>
<p class="text-gray-600">help@barkbuddy.com</p>
</div>
</div>
<div class="flex items-start">
<div class="text-amber-500 text-xl mt-1 mr-4">
<i class="fas fa-clock"></i>
</div>
<div>
<h4 class="font-bold text-gray-800">Hours</h4>
<p class="text-gray-600">Monday-Friday: 9am-6pm</p>
<p class="text-gray-600">Saturday: 10am-4pm</p>
</div>
</div>
</div>
<div class="mt-8">
<h4 class="font-bold text-gray-800 mb-4">Follow Us</h4>
<div class="flex space-x-4">
<a href="#" class="text-gray-600 hover:text-amber-500 text-2xl">
<i class="fab fa-facebook"></i>
</a>
<a href="#" class="text-gray-600 hover:text-amber-500 text-2xl">
<i class="fab fa-instagram"></i>
</a>
<a href="#" class="text-gray-600 hover:text-amber-500 text-2xl">
<i class="fab fa-twitter"></i>
</a>
<a href="#" class="text-gray-600 hover:text-amber-500 text-2xl">
<i class="fab fa-youtube"></i>
</a>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer class="bg-gray-800 text-white py-12">
<div class="max-w-6xl mx-auto px-4">
<div class="grid grid-cols-1 md:grid-cols-4 gap-8">
<div>
<div class="flex items-center mb-4">
<i class="fas fa-dog text-amber-500 text-3xl mr-3"></i>
<span class="font-bold text-xl">BarkBuddy</span>
</div>
<p class="text-gray-400">Humane solutions for excessive dog barking. Helping dogs and their owners live happier lives together.</p>
</div>
<div>
<h4 class="font-bold text-lg mb-4">Quick Links</h4>
<ul class="space-y-2">
<li><a href="#" class="text-gray-400 hover:text-amber-500 transition">Home</a></li>
<li><a href="#solutions" class="text-gray-400 hover:text-amber-500 transition">Solutions</a></li>
<li><a href="#about" class="text-gray-400 hover:text-amber-500 transition">About Us</a></li>
<li><a href="#testimonials" class="text-gray-400 hover:text-amber-500 transition">Testimonials</a></li>
<li><a href="#contact" class="text-gray-400 hover:text-amber-500 transition">Contact</a></li>
</ul>
</div>
<div>
<h4 class="font-bold text-lg mb-4">Resources</h4>
<ul class="space-y-2">
<li><a href="#" class="text-gray-400 hover:text-amber-500 transition">Blog</a></li>
<li><a href="#" class="text-gray-400 hover:text-amber-500 transition">FAQs</a></li>
<li><a href="#" class="text-gray-400 hover:text-amber-500 transition">Training Guides</a></li>
<li><a href="#" class="text-gray-400 hover:text-amber-500 transition">Videos</a></li>
<li><a href="#" class="text-gray-400 hover:text-amber-500 transition">Research</a></li>
</ul>
</div>
<div>
<h4 class="font-bold text-lg mb-4">Newsletter</h4>
<p class="text-gray-400 mb-4">Subscribe for tips and special offers.</p>
<form class="flex">
<input type="email" placeholder="Your email" class="px-4 py-2 rounded-l-lg focus:outline-none text-gray-800 w-full">
<button type="submit" class="bg-amber-500 hover:bg-amber-600 px-4 py-2 rounded-r-lg">
<i class="fas fa-paper-plane"></i>
</button>
</form>
</div>
</div>
<div class="border-t border-gray-700 mt-12 pt-8 text-center text-gray-400">
<p>© 2023 BarkBuddy. All rights reserved. | <a href="#" class="hover:text-amber-500">Privacy Policy</a> | <a href="#" class="hover:text-amber-500">Terms of Service</a></p>
</div>
</div>
</footer>
<!-- Bark Button Animation -->
<div id="barkAnimation" class="fixed inset-0 bg-black bg-opacity-70 flex items-center justify-center hidden z-50">
<div class="bg-white rounded-xl p-8 max-w-md text-center">
<div class="dog-icon text-6xl text-amber-500 mb-6">
<i class="fas fa-dog bark-animation"></i>
</div>
<h3 class="text-2xl font-bold text-gray-800 mb-4">Bark! Bark!</h3>
<p class="text-gray-600 mb-6">This is what excessive barking sounds like to your neighbors. We can help reduce this behavior humanely.</p>
<button id="stopBarkBtn" class="bg-amber-500 hover:bg-amber-600 text-white font-bold py-2 px-6 rounded-full">
Stop Barking
</button>
</div>
</div>
<script>
// Bark button functionality
const barkBtn = document.getElementById('barkBtn');
const barkAnimation = document.getElementById('barkAnimation');
const stopBarkBtn = document.getElementById('stopBarkBtn');
let barkSound;
// Preload sound
function preloadSound() {
barkSound = new Audio('https://www.soundjay.com/misc/sounds/bark-1.mp3');
barkSound.loop = true;
}
// Load sound when page loads
window.addEventListener('load', preloadSound);
barkBtn.addEventListener('click', function() {
barkAnimation.classList.remove('hidden');
barkSound.play();
});
stopBarkBtn.addEventListener('click', function() {
barkAnimation.classList.add('hidden');
barkSound.pause();
barkSound.currentTime = 0;
});
// Close modal if clicked outside
barkAnimation.addEventListener('click', function(e) {
if (e.target === barkAnimation) {
barkAnimation.classList.add('hidden');
barkSound.pause();
barkSound.currentTime = 0;
}
});
// 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'
});
}
});
});
// Mobile menu toggle (would need more implementation)
const mobileMenuBtn = document.querySelector('.md\\:hidden');
mobileMenuBtn.addEventListener('click', function() {
alert("Mobile menu would open here in a full implementation.");
});
</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/dog-barking" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html> |