ofields commited on
Commit
a186323
·
verified ·
1 Parent(s): 839f552

Dog barking landing page - Initial Deployment

Browse files
Files changed (2) hide show
  1. README.md +6 -4
  2. index.html +453 -19
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Dog Barking
3
- emoji:
4
- colorFrom: blue
5
  colorTo: yellow
6
  sdk: static
7
  pinned: false
 
 
8
  ---
9
 
10
- Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
1
  ---
2
+ title: dog-barking
3
+ emoji: 🐳
4
+ colorFrom: yellow
5
  colorTo: yellow
6
  sdk: static
7
  pinned: false
8
+ tags:
9
+ - deepsite
10
  ---
11
 
12
+ Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
index.html CHANGED
@@ -1,19 +1,453 @@
1
- <!doctype html>
2
- <html>
3
- <head>
4
- <meta charset="utf-8" />
5
- <meta name="viewport" content="width=device-width" />
6
- <title>My static Space</title>
7
- <link rel="stylesheet" href="style.css" />
8
- </head>
9
- <body>
10
- <div class="card">
11
- <h1>Welcome to your static Space!</h1>
12
- <p>You can modify this app directly by editing <i>index.html</i> in the Files and versions tab.</p>
13
- <p>
14
- Also don't forget to check the
15
- <a href="https://huggingface.co/docs/hub/spaces" target="_blank">Spaces documentation</a>.
16
- </p>
17
- </div>
18
- </body>
19
- </html>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>BarkBuddy - Dog Barking Solutions</title>
7
+ <script src="https://cdn.tailwindcss.com"></script>
8
+ <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
9
+ <style>
10
+ .dog-bg {
11
+ 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');
12
+ background-size: cover;
13
+ background-position: center;
14
+ background-attachment: fixed;
15
+ }
16
+
17
+ .bark-btn {
18
+ transition: all 0.3s ease;
19
+ }
20
+
21
+ .bark-btn:hover {
22
+ transform: scale(1.05);
23
+ box-shadow: 0 10px 25px rgba(234, 179, 8, 0.4);
24
+ }
25
+
26
+ .bark-animation {
27
+ animation: bark 0.5s ease infinite alternate;
28
+ }
29
+
30
+ @keyframes bark {
31
+ 0% { transform: translateY(0); }
32
+ 100% { transform: translateY(-5px); }
33
+ }
34
+
35
+ .dog-icon {
36
+ transition: all 0.3s ease;
37
+ }
38
+
39
+ .dog-icon:hover {
40
+ transform: rotate(15deg);
41
+ }
42
+ </style>
43
+ </head>
44
+ <body class="font-sans bg-gray-100">
45
+ <!-- Navigation -->
46
+ <nav class="bg-white shadow-lg sticky top-0 z-50">
47
+ <div class="max-w-6xl mx-auto px-4">
48
+ <div class="flex justify-between items-center py-4">
49
+ <div class="flex items-center space-x-4">
50
+ <i class="fas fa-dog text-amber-500 text-3xl"></i>
51
+ <span class="font-bold text-gray-800 text-xl">BarkBuddy</span>
52
+ </div>
53
+ <div class="hidden md:flex items-center space-x-8">
54
+ <a href="#solutions" class="text-gray-700 hover:text-amber-500 transition">Solutions</a>
55
+ <a href="#about" class="text-gray-700 hover:text-amber-500 transition">About</a>
56
+ <a href="#testimonials" class="text-gray-700 hover:text-amber-500 transition">Testimonials</a>
57
+ <a href="#contact" class="text-gray-700 hover:text-amber-500 transition">Contact</a>
58
+ </div>
59
+ <button class="md:hidden text-gray-700 focus:outline-none">
60
+ <i class="fas fa-bars text-2xl"></i>
61
+ </button>
62
+ </div>
63
+ </div>
64
+ </nav>
65
+
66
+ <!-- Hero Section -->
67
+ <section class="dog-bg relative h-screen flex items-center justify-center">
68
+ <div class="absolute inset-0 bg-black bg-opacity-40"></div>
69
+ <div class="relative z-10 text-center px-4">
70
+ <h1 class="text-4xl md:text-6xl font-bold text-white mb-6">Stop Excessive Dog Barking</h1>
71
+ <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>
72
+ <div class="flex flex-col sm:flex-row justify-center gap-4">
73
+ <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">
74
+ <i class="fas fa-volume-up"></i> Hear Barking Demo
75
+ </button>
76
+ <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">
77
+ <i class="fas fa-book-open"></i> Learn More
78
+ </button>
79
+ </div>
80
+ </div>
81
+ </section>
82
+
83
+ <!-- Solutions Section -->
84
+ <section id="solutions" class="py-20 bg-white">
85
+ <div class="max-w-6xl mx-auto px-4">
86
+ <h2 class="text-3xl md:text-4xl font-bold text-center text-gray-800 mb-16">Our Barking Solutions</h2>
87
+
88
+ <div class="grid grid-cols-1 md:grid-cols-3 gap-8">
89
+ <!-- Solution 1 -->
90
+ <div class="bg-gray-50 rounded-xl p-6 shadow-md hover:shadow-lg transition">
91
+ <div class="text-amber-500 text-4xl mb-4">
92
+ <i class="fas fa-graduation-cap"></i>
93
+ </div>
94
+ <h3 class="text-xl font-bold text-gray-800 mb-3">Training Programs</h3>
95
+ <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>
96
+ <button class="text-amber-500 font-semibold hover:text-amber-600 flex items-center gap-2">
97
+ Learn More <i class="fas fa-arrow-right"></i>
98
+ </button>
99
+ </div>
100
+
101
+ <!-- Solution 2 -->
102
+ <div class="bg-gray-50 rounded-xl p-6 shadow-md hover:shadow-lg transition">
103
+ <div class="text-amber-500 text-4xl mb-4">
104
+ <i class="fas fa-bell"></i>
105
+ </div>
106
+ <h3 class="text-xl font-bold text-gray-800 mb-3">Smart Devices</h3>
107
+ <p class="text-gray-600 mb-4">High-tech bark collars and ultrasonic devices that gently correct barking without harm.</p>
108
+ <button class="text-amber-500 font-semibold hover:text-amber-600 flex items-center gap-2">
109
+ Learn More <i class="fas fa-arrow-right"></i>
110
+ </button>
111
+ </div>
112
+
113
+ <!-- Solution 3 -->
114
+ <div class="bg-gray-50 rounded-xl p-6 shadow-md hover:shadow-lg transition">
115
+ <div class="text-amber-500 text-4xl mb-4">
116
+ <i class="fas fa-home"></i>
117
+ </div>
118
+ <h3 class="text-xl font-bold text-gray-800 mb-3">Home Environment</h3>
119
+ <p class="text-gray-600 mb-4">Solutions to reduce triggers in your home environment that cause excessive barking.</p>
120
+ <button class="text-amber-500 font-semibold hover:text-amber-600 flex items-center gap-2">
121
+ Learn More <i class="fas fa-arrow-right"></i>
122
+ </button>
123
+ </div>
124
+ </div>
125
+ </div>
126
+ </section>
127
+
128
+ <!-- About Section -->
129
+ <section id="about" class="py-20 bg-gray-100">
130
+ <div class="max-w-6xl mx-auto px-4">
131
+ <div class="flex flex-col md:flex-row items-center gap-12">
132
+ <div class="md:w-1/2">
133
+ <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"
134
+ alt="Happy dog with owner"
135
+ class="rounded-xl shadow-lg w-full h-auto">
136
+ </div>
137
+ <div class="md:w-1/2">
138
+ <h2 class="text-3xl md:text-4xl font-bold text-gray-800 mb-6">Why Dogs Bark & How We Help</h2>
139
+ <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>
140
+ <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>
141
+ <div class="flex flex-col sm:flex-row gap-4">
142
+ <button class="bg-amber-500 hover:bg-amber-600 text-white font-bold py-3 px-6 rounded-full">
143
+ Meet Our Team
144
+ </button>
145
+ <button class="border border-amber-500 text-amber-500 hover:bg-amber-50 font-bold py-3 px-6 rounded-full">
146
+ Our Philosophy
147
+ </button>
148
+ </div>
149
+ </div>
150
+ </div>
151
+ </div>
152
+ </section>
153
+
154
+ <!-- Testimonials Section -->
155
+ <section id="testimonials" class="py-20 bg-white">
156
+ <div class="max-w-6xl mx-auto px-4">
157
+ <h2 class="text-3xl md:text-4xl font-bold text-center text-gray-800 mb-16">Success Stories</h2>
158
+
159
+ <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
160
+ <!-- Testimonial 1 -->
161
+ <div class="bg-gray-50 rounded-xl p-6 shadow-md">
162
+ <div class="flex items-center mb-4">
163
+ <div class="text-amber-500 text-2xl mr-2">
164
+ <i class="fas fa-star"></i>
165
+ <i class="fas fa-star"></i>
166
+ <i class="fas fa-star"></i>
167
+ <i class="fas fa-star"></i>
168
+ <i class="fas fa-star"></i>
169
+ </div>
170
+ </div>
171
+ <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>
172
+ <div class="flex items-center">
173
+ <img src="https://randomuser.me/api/portraits/women/43.jpg" alt="Sarah J." class="w-12 h-12 rounded-full mr-4">
174
+ <div>
175
+ <h4 class="font-bold text-gray-800">Sarah J.</h4>
176
+ <p class="text-gray-500 text-sm">Dog Owner</p>
177
+ </div>
178
+ </div>
179
+ </div>
180
+
181
+ <!-- Testimonial 2 -->
182
+ <div class="bg-gray-50 rounded-xl p-6 shadow-md">
183
+ <div class="flex items-center mb-4">
184
+ <div class="text-amber-500 text-2xl mr-2">
185
+ <i class="fas fa-star"></i>
186
+ <i class="fas fa-star"></i>
187
+ <i class="fas fa-star"></i>
188
+ <i class="fas fa-star"></i>
189
+ <i class="fas fa-star"></i>
190
+ </div>
191
+ </div>
192
+ <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>
193
+ <div class="flex items-center">
194
+ <img src="https://randomuser.me/api/portraits/men/32.jpg" alt="Michael T." class="w-12 h-12 rounded-full mr-4">
195
+ <div>
196
+ <h4 class="font-bold text-gray-800">Michael T.</h4>
197
+ <p class="text-gray-500 text-sm">Apartment Resident</p>
198
+ </div>
199
+ </div>
200
+ </div>
201
+
202
+ <!-- Testimonial 3 -->
203
+ <div class="bg-gray-50 rounded-xl p-6 shadow-md">
204
+ <div class="flex items-center mb-4">
205
+ <div class="text-amber-500 text-2xl mr-2">
206
+ <i class="fas fa-star"></i>
207
+ <i class="fas fa-star"></i>
208
+ <i class="fas fa-star"></i>
209
+ <i class="fas fa-star"></i>
210
+ <i class="fas fa-star-half-alt"></i>
211
+ </div>
212
+ </div>
213
+ <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>
214
+ <div class="flex items-center">
215
+ <img src="https://randomuser.me/api/portraits/women/65.jpg" alt="Dr. Lisa R." class="w-12 h-12 rounded-full mr-4">
216
+ <div>
217
+ <h4 class="font-bold text-gray-800">Dr. Lisa R.</h4>
218
+ <p class="text-gray-500 text-sm">Veterinarian</p>
219
+ </div>
220
+ </div>
221
+ </div>
222
+ </div>
223
+ </div>
224
+ </section>
225
+
226
+ <!-- CTA Section -->
227
+ <section class="py-16 bg-amber-500">
228
+ <div class="max-w-4xl mx-auto px-4 text-center">
229
+ <h2 class="text-3xl md:text-4xl font-bold text-white mb-6">Ready for a Quieter Home?</h2>
230
+ <p class="text-xl text-white mb-8">Take our 2-minute quiz to get personalized recommendations for your dog's barking.</p>
231
+ <button class="bg-white hover:bg-gray-100 text-amber-500 font-bold py-4 px-12 rounded-full text-lg">
232
+ Start the Quiz Now
233
+ </button>
234
+ </div>
235
+ </section>
236
+
237
+ <!-- Contact Section -->
238
+ <section id="contact" class="py-20 bg-gray-100">
239
+ <div class="max-w-6xl mx-auto px-4">
240
+ <h2 class="text-3xl md:text-4xl font-bold text-center text-gray-800 mb-16">Get In Touch</h2>
241
+
242
+ <div class="flex flex-col md:flex-row gap-12">
243
+ <div class="md:w-1/2">
244
+ <form class="space-y-6">
245
+ <div>
246
+ <label for="name" class="block text-gray-700 font-medium mb-2">Your Name</label>
247
+ <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">
248
+ </div>
249
+ <div>
250
+ <label for="email" class="block text-gray-700 font-medium mb-2">Email Address</label>
251
+ <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">
252
+ </div>
253
+ <div>
254
+ <label for="dog" class="block text-gray-700 font-medium mb-2">Dog's Breed (Optional)</label>
255
+ <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">
256
+ </div>
257
+ <div>
258
+ <label for="message" class="block text-gray-700 font-medium mb-2">Your Message</label>
259
+ <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>
260
+ </div>
261
+ <button type="submit" class="w-full bg-amber-500 hover:bg-amber-600 text-white font-bold py-3 px-6 rounded-lg">
262
+ Send Message
263
+ </button>
264
+ </form>
265
+ </div>
266
+ <div class="md:w-1/2">
267
+ <div class="bg-white rounded-xl p-8 shadow-md h-full">
268
+ <h3 class="text-2xl font-bold text-gray-800 mb-6">Contact Information</h3>
269
+ <div class="space-y-6">
270
+ <div class="flex items-start">
271
+ <div class="text-amber-500 text-xl mt-1 mr-4">
272
+ <i class="fas fa-map-marker-alt"></i>
273
+ </div>
274
+ <div>
275
+ <h4 class="font-bold text-gray-800">Our Location</h4>
276
+ <p class="text-gray-600">123 Bark Avenue, Dogtown, DT 12345</p>
277
+ </div>
278
+ </div>
279
+ <div class="flex items-start">
280
+ <div class="text-amber-500 text-xl mt-1 mr-4">
281
+ <i class="fas fa-phone-alt"></i>
282
+ </div>
283
+ <div>
284
+ <h4 class="font-bold text-gray-800">Call Us</h4>
285
+ <p class="text-gray-600">(555) 123-4567</p>
286
+ </div>
287
+ </div>
288
+ <div class="flex items-start">
289
+ <div class="text-amber-500 text-xl mt-1 mr-4">
290
+ <i class="fas fa-envelope"></i>
291
+ </div>
292
+ <div>
293
+ <h4 class="font-bold text-gray-800">Email Us</h4>
294
+ <p class="text-gray-600">help@barkbuddy.com</p>
295
+ </div>
296
+ </div>
297
+ <div class="flex items-start">
298
+ <div class="text-amber-500 text-xl mt-1 mr-4">
299
+ <i class="fas fa-clock"></i>
300
+ </div>
301
+ <div>
302
+ <h4 class="font-bold text-gray-800">Hours</h4>
303
+ <p class="text-gray-600">Monday-Friday: 9am-6pm</p>
304
+ <p class="text-gray-600">Saturday: 10am-4pm</p>
305
+ </div>
306
+ </div>
307
+ </div>
308
+ <div class="mt-8">
309
+ <h4 class="font-bold text-gray-800 mb-4">Follow Us</h4>
310
+ <div class="flex space-x-4">
311
+ <a href="#" class="text-gray-600 hover:text-amber-500 text-2xl">
312
+ <i class="fab fa-facebook"></i>
313
+ </a>
314
+ <a href="#" class="text-gray-600 hover:text-amber-500 text-2xl">
315
+ <i class="fab fa-instagram"></i>
316
+ </a>
317
+ <a href="#" class="text-gray-600 hover:text-amber-500 text-2xl">
318
+ <i class="fab fa-twitter"></i>
319
+ </a>
320
+ <a href="#" class="text-gray-600 hover:text-amber-500 text-2xl">
321
+ <i class="fab fa-youtube"></i>
322
+ </a>
323
+ </div>
324
+ </div>
325
+ </div>
326
+ </div>
327
+ </div>
328
+ </div>
329
+ </section>
330
+
331
+ <!-- Footer -->
332
+ <footer class="bg-gray-800 text-white py-12">
333
+ <div class="max-w-6xl mx-auto px-4">
334
+ <div class="grid grid-cols-1 md:grid-cols-4 gap-8">
335
+ <div>
336
+ <div class="flex items-center mb-4">
337
+ <i class="fas fa-dog text-amber-500 text-3xl mr-3"></i>
338
+ <span class="font-bold text-xl">BarkBuddy</span>
339
+ </div>
340
+ <p class="text-gray-400">Humane solutions for excessive dog barking. Helping dogs and their owners live happier lives together.</p>
341
+ </div>
342
+ <div>
343
+ <h4 class="font-bold text-lg mb-4">Quick Links</h4>
344
+ <ul class="space-y-2">
345
+ <li><a href="#" class="text-gray-400 hover:text-amber-500 transition">Home</a></li>
346
+ <li><a href="#solutions" class="text-gray-400 hover:text-amber-500 transition">Solutions</a></li>
347
+ <li><a href="#about" class="text-gray-400 hover:text-amber-500 transition">About Us</a></li>
348
+ <li><a href="#testimonials" class="text-gray-400 hover:text-amber-500 transition">Testimonials</a></li>
349
+ <li><a href="#contact" class="text-gray-400 hover:text-amber-500 transition">Contact</a></li>
350
+ </ul>
351
+ </div>
352
+ <div>
353
+ <h4 class="font-bold text-lg mb-4">Resources</h4>
354
+ <ul class="space-y-2">
355
+ <li><a href="#" class="text-gray-400 hover:text-amber-500 transition">Blog</a></li>
356
+ <li><a href="#" class="text-gray-400 hover:text-amber-500 transition">FAQs</a></li>
357
+ <li><a href="#" class="text-gray-400 hover:text-amber-500 transition">Training Guides</a></li>
358
+ <li><a href="#" class="text-gray-400 hover:text-amber-500 transition">Videos</a></li>
359
+ <li><a href="#" class="text-gray-400 hover:text-amber-500 transition">Research</a></li>
360
+ </ul>
361
+ </div>
362
+ <div>
363
+ <h4 class="font-bold text-lg mb-4">Newsletter</h4>
364
+ <p class="text-gray-400 mb-4">Subscribe for tips and special offers.</p>
365
+ <form class="flex">
366
+ <input type="email" placeholder="Your email" class="px-4 py-2 rounded-l-lg focus:outline-none text-gray-800 w-full">
367
+ <button type="submit" class="bg-amber-500 hover:bg-amber-600 px-4 py-2 rounded-r-lg">
368
+ <i class="fas fa-paper-plane"></i>
369
+ </button>
370
+ </form>
371
+ </div>
372
+ </div>
373
+ <div class="border-t border-gray-700 mt-12 pt-8 text-center text-gray-400">
374
+ <p>&copy; 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>
375
+ </div>
376
+ </div>
377
+ </footer>
378
+
379
+ <!-- Bark Button Animation -->
380
+ <div id="barkAnimation" class="fixed inset-0 bg-black bg-opacity-70 flex items-center justify-center hidden z-50">
381
+ <div class="bg-white rounded-xl p-8 max-w-md text-center">
382
+ <div class="dog-icon text-6xl text-amber-500 mb-6">
383
+ <i class="fas fa-dog bark-animation"></i>
384
+ </div>
385
+ <h3 class="text-2xl font-bold text-gray-800 mb-4">Bark! Bark!</h3>
386
+ <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>
387
+ <button id="stopBarkBtn" class="bg-amber-500 hover:bg-amber-600 text-white font-bold py-2 px-6 rounded-full">
388
+ Stop Barking
389
+ </button>
390
+ </div>
391
+ </div>
392
+
393
+ <script>
394
+ // Bark button functionality
395
+ const barkBtn = document.getElementById('barkBtn');
396
+ const barkAnimation = document.getElementById('barkAnimation');
397
+ const stopBarkBtn = document.getElementById('stopBarkBtn');
398
+ let barkSound;
399
+
400
+ // Preload sound
401
+ function preloadSound() {
402
+ barkSound = new Audio('https://www.soundjay.com/misc/sounds/bark-1.mp3');
403
+ barkSound.loop = true;
404
+ }
405
+
406
+ // Load sound when page loads
407
+ window.addEventListener('load', preloadSound);
408
+
409
+ barkBtn.addEventListener('click', function() {
410
+ barkAnimation.classList.remove('hidden');
411
+ barkSound.play();
412
+ });
413
+
414
+ stopBarkBtn.addEventListener('click', function() {
415
+ barkAnimation.classList.add('hidden');
416
+ barkSound.pause();
417
+ barkSound.currentTime = 0;
418
+ });
419
+
420
+ // Close modal if clicked outside
421
+ barkAnimation.addEventListener('click', function(e) {
422
+ if (e.target === barkAnimation) {
423
+ barkAnimation.classList.add('hidden');
424
+ barkSound.pause();
425
+ barkSound.currentTime = 0;
426
+ }
427
+ });
428
+
429
+ // Smooth scrolling for anchor links
430
+ document.querySelectorAll('a[href^="#"]').forEach(anchor => {
431
+ anchor.addEventListener('click', function (e) {
432
+ e.preventDefault();
433
+
434
+ const targetId = this.getAttribute('href');
435
+ if (targetId === '#') return;
436
+
437
+ const targetElement = document.querySelector(targetId);
438
+ if (targetElement) {
439
+ targetElement.scrollIntoView({
440
+ behavior: 'smooth'
441
+ });
442
+ }
443
+ });
444
+ });
445
+
446
+ // Mobile menu toggle (would need more implementation)
447
+ const mobileMenuBtn = document.querySelector('.md\\:hidden');
448
+ mobileMenuBtn.addEventListener('click', function() {
449
+ alert("Mobile menu would open here in a full implementation.");
450
+ });
451
+ </script>
452
+ <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>
453
+ </html>