Funkytownk commited on
Commit
79ccc34
·
verified ·
1 Parent(s): ed915b0

Now build out the other pages - Initial Deployment

Browse files
Files changed (2) hide show
  1. README.md +7 -5
  2. index.html +607 -19
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Bandb
3
- emoji: 👁
4
- colorFrom: gray
5
- colorTo: blue
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: bandb
3
+ emoji: 🐳
4
+ colorFrom: yellow
5
+ colorTo: pink
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,607 @@
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>Bear-n-Buttons - Your Cozy Baby Hub</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
+ @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
11
+
12
+ body {
13
+ font-family: 'Poppins', sans-serif;
14
+ }
15
+
16
+ .hero-gradient {
17
+ background: linear-gradient(135deg, #f9f0ff 0%, #e3f2fd 100%);
18
+ }
19
+
20
+ .section-divider {
21
+ position: relative;
22
+ height: 80px;
23
+ overflow: hidden;
24
+ }
25
+
26
+ .section-divider::before {
27
+ content: "";
28
+ position: absolute;
29
+ left: 0;
30
+ right: 0;
31
+ top: 0;
32
+ height: 100%;
33
+ background: url("data:image/svg+xml,%3Csvg viewBox='0 0 1200 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z' opacity='.25' fill='%23e3f2fd'/%3E%3Cpath d='M0,0V15.81C13,36.92,27.64,56.86,47.69,72.05,99.41,111.27,165,111,224.58,91.58c31.15-10.15,60.09-26.07,89.67-39.8,40.92-19,84.73-46,130.83-49.67,36.26-2.85,70.9,9.42,98.6,31.56,31.77,25.39,62.32,62,103.63,73,40.44,10.79,81.35-6.69,119.13-24.28s75.16-39,116.92-43.05c59.73-5.85,113.28,22.88,168.9,38.84,30.2,8.66,59,6.17,87.09-7.5,22.43-10.89,48-26.93,60.65-49.24V0Z' opacity='.5' fill='%23f9f0ff'/%3E%3Cpath d='M0,0V5.63C149.93,59,314.09,71.32,475.83,42.57c43-7.64,84.23-20.12,127.61-26.46,59-8.63,112.48,12.24,165.56,35.4C827.93,77.22,886,95.24,951.2,90c86.53-7,172.46-45.71,248.8-84.81V0Z' fill='%23ffffff'/%3E%3C/svg%3E");
34
+ background-size: cover;
35
+ transform: rotate(180deg);
36
+ }
37
+
38
+ .feature-card:hover {
39
+ transform: translateY(-5px);
40
+ box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
41
+ }
42
+
43
+ .guide-card {
44
+ transition: all 0.3s ease;
45
+ }
46
+
47
+ .guide-card:hover {
48
+ transform: scale(1.02);
49
+ }
50
+
51
+ .service-card {
52
+ transition: all 0.3s ease;
53
+ }
54
+
55
+ .service-card:hover {
56
+ transform: translateY(-5px);
57
+ }
58
+
59
+ .checklist-item {
60
+ position: relative;
61
+ padding-left: 30px;
62
+ }
63
+
64
+ .checklist-item::before {
65
+ content: "✓";
66
+ position: absolute;
67
+ left: 0;
68
+ color: #4f46e5;
69
+ font-weight: bold;
70
+ }
71
+ </style>
72
+ </head>
73
+ <body class="bg-gray-50">
74
+ <!-- Navigation -->
75
+ <nav class="bg-white shadow-md sticky top-0 z-50">
76
+ <div class="container mx-auto px-4 py-3 flex justify-between items-center">
77
+ <div class="flex items-center space-x-2">
78
+ <i class="fas fa-bear text-3xl text-indigo-600"></i>
79
+ <span class="text-xl font-bold text-gray-800">Bear-n-Buttons</span>
80
+ </div>
81
+ <div class="hidden md:flex space-x-8">
82
+ <a href="index.html" class="text-gray-700 hover:text-indigo-600 font-medium">Home</a>
83
+ <a href="shop.html" class="text-indigo-600 font-medium">Shop</a>
84
+ <a href="guides.html" class="text-gray-700 hover:text-indigo-600 font-medium">Guides</a>
85
+ <a href="services.html" class="text-gray-700 hover:text-indigo-600 font-medium">Services</a>
86
+ <a href="about.html" class="text-gray-700 hover:text-indigo-600 font-medium">About</a>
87
+ </div>
88
+ <div class="flex items-center space-x-4">
89
+ <a href="#" class="text-gray-700 hover:text-indigo-600"><i class="fas fa-search"></i></a>
90
+ <a href="#" class="text-gray-700 hover:text-indigo-600"><i class="fas fa-user"></i></a>
91
+ <a href="#" class="text-gray-700 hover:text-indigo-600"><i class="fas fa-shopping-cart"></i></a>
92
+ <button class="md:hidden text-gray-700">
93
+ <i class="fas fa-bars"></i>
94
+ </button>
95
+ </div>
96
+ </div>
97
+ </nav>
98
+
99
+ <!-- Hero Section -->
100
+ <section class="hero-gradient py-16 md:py-24">
101
+ <div class="container mx-auto px-4 text-center">
102
+ <h1 class="text-4xl md:text-5xl font-bold text-gray-800 mb-6">Parenting Guides & Resources</h1>
103
+ <p class="text-lg text-gray-600 mb-8">Expert advice and practical tips for every stage of your parenting journey.</p>
104
+ </div>
105
+ </section>
106
+
107
+ <!-- Guides Categories -->
108
+ <section class="py-16 bg-white">
109
+ <div class="container mx-auto px-4">
110
+ <div class="grid md:grid-cols-3 gap-8">
111
+ <div class="bg-pink-50 rounded-xl p-8 text-center">
112
+ <div class="bg-white w-16 h-16 rounded-full flex items-center justify-center mx-auto mb-6">
113
+ <i class="fas fa-baby-carriage text-2xl text-pink-500"></i>
114
+ </div>
115
+ <h3 class="text-xl font-bold text-gray-800 mb-3">Newborn Care</h3>
116
+ <p class="text-gray-600 mb-5">Essential guides for the first weeks and months with your newborn.</p>
117
+ <a href="#" class="text-pink-600 font-medium hover:text-pink-700">Browse Guides</a>
118
+ </div>
119
+ <div class="bg-blue-50 rounded-xl p-8 text-center">
120
+ <div class="bg-white w-16 h-16 rounded-full flex items-center justify-center mx-auto mb-6">
121
+ <i class="fas fa-child text-2xl text-blue-500"></i>
122
+ </div>
123
+ <h3 class="text-xl font-bold text-gray-800 mb-3">Toddler Development</h3>
124
+ <p class="text-gray-600 mb-5">Supporting your child's growth from first steps to first words.</p>
125
+ <a href="#" class="text-blue-600 font-medium hover:text-blue-700">Browse Guides</a>
126
+ </div>
127
+ <div class="bg-purple-50 rounded-xl p-8 text-center">
128
+ <div class="bg-white w-16 h-16 rounded-full flex items-center justify-center mx-auto mb-6">
129
+ <i class="fas fa-heartbeat text-2xl text-purple-500"></i>
130
+ </div>
131
+ <h3 class="text-xl font-bold text-gray-800 mb-3">Health & Safety</h3>
132
+ <p class="text-gray-600 mb-5">Keeping your little one safe and healthy at every stage.</p>
133
+ <a href="#" class="text-purple-600 font-medium hover:text-purple-700">Browse Guides</a>
134
+ </div>
135
+ </div>
136
+ </div>
137
+ </section>
138
+ <div class="container mx-auto px-4 flex flex-col md:flex-row items-center">
139
+ <div class="md:w-1/2 mb-10 md:mb-0">
140
+ <h1 class="text-4xl md:text-5xl font-bold text-gray-800 mb-6">Welcome To Bear-n-Buttons <span class="text-indigo-600">🧸</span></h1>
141
+ <p class="text-lg text-gray-600 mb-8">We're your cozy online hub for all things baby — blending essential products with thoughtful services to support parents every step of the way.</p>
142
+ <div class="flex space-x-4">
143
+ <a href="#" class="bg-indigo-600 hover:bg-indigo-700 text-white px-6 py-3 rounded-lg font-medium transition duration-300">Shop Now</a>
144
+ <a href="#" class="border-2 border-indigo-600 text-indigo-600 hover:bg-indigo-50 px-6 py-3 rounded-lg font-medium transition duration-300">Our Story</a>
145
+ </div>
146
+ </div>
147
+ <div class="md:w-1/2 flex justify-center">
148
+ <img src="https://bear-n-buttons.com/cdn/shop/files/positive-pregnancy-test.jpg?v=1744665015&width=1500" alt="Happy family" class="rounded-xl shadow-xl w-full max-w-lg">
149
+ </div>
150
+ </div>
151
+ </section>
152
+
153
+ <!-- Divider -->
154
+ <div class="section-divider"></div>
155
+
156
+ <!-- Maternity & Paternity Section -->
157
+ <section class="py-16 bg-white">
158
+ <div class="container mx-auto px-4">
159
+ <div class="grid md:grid-cols-2 gap-10">
160
+ <!-- Maternity Card -->
161
+ <div class="bg-pink-50 rounded-xl p-8 flex flex-col md:flex-row items-center">
162
+ <div class="md:w-1/3 mb-6 md:mb-0 flex justify-center">
163
+ <img src="https://bear-n-buttons.com/cdn/shop/files/pregnant-woman-in-a-white-dress-holds-her-belly.jpg?v=1744693412&width=1500" alt="Maternity" class="rounded-lg w-full max-w-xs">
164
+ </div>
165
+ <div class="md:w-2/3 md:pl-8">
166
+ <h2 class="text-2xl font-bold text-gray-800 mb-3">Maternity</h2>
167
+ <h3 class="text-xl font-semibold text-pink-600 mb-4">🌸 Must-Haves for Every Mom-to-Be</h3>
168
+ <p class="text-gray-600 mb-5">Bear-n-Buttons supports every mama-to-be with essential products for comfort, health, and preparation. From bump to birth and beyond, we've got you covered.</p>
169
+ <a href="#" class="text-pink-600 font-medium hover:text-pink-700 flex items-center">
170
+ Checklist <i class="fas fa-arrow-right ml-2"></i>
171
+ </a>
172
+ </div>
173
+ </div>
174
+
175
+ <!-- Paternity Card -->
176
+ <div class="bg-blue-50 rounded-xl p-8 flex flex-col md:flex-row items-center">
177
+ <div class="md:w-1/3 mb-6 md:mb-0 flex justify-center">
178
+ <img src="https://bear-n-buttons.com/cdn/shop/files/infant-father.jpg?v=1745453038&width=1500" alt="Paternity" class="rounded-lg w-full max-w-xs">
179
+ </div>
180
+ <div class="md:w-2/3 md:pl-8">
181
+ <h2 class="text-2xl font-bold text-gray-800 mb-3">Paternity</h2>
182
+ <h3 class="text-xl font-semibold text-blue-600 mb-4">A Modern Guide for Dads-to-Be 🍼</h3>
183
+ <p class="text-gray-600 mb-5">Bear-n-Buttons helps new dads feel confident and prepared for fatherhood with practical gear and guidance. From baby bonding items to parenting resources.</p>
184
+ <a href="#" class="text-blue-600 font-medium hover:text-blue-700 flex items-center">
185
+ Learn More <i class="fas fa-arrow-right ml-2"></i>
186
+ </a>
187
+ </div>
188
+ </div>
189
+ </div>
190
+ </div>
191
+ </section>
192
+
193
+ <!-- New Parent Tips Section -->
194
+ <section class="py-16 bg-gray-50">
195
+ <div class="container mx-auto px-4">
196
+ <h2 class="text-3xl font-bold text-center text-gray-800 mb-12">New Parent Tips</h2>
197
+
198
+ <!-- Crying Guide -->
199
+ <div class="bg-white rounded-xl shadow-md overflow-hidden mb-12 guide-card">
200
+ <div class="md:flex">
201
+ <div class="md:w-1/3">
202
+ <img src="https://bear-n-buttons.com/cdn/shop/files/woman-doctor.jpg?v=1745455464&width=3200" alt="Baby crying guide" class="w-full h-full object-cover">
203
+ </div>
204
+ <div class="md:w-2/3 p-8">
205
+ <h3 class="text-2xl font-bold text-gray-800 mb-2">🧸 Go-To Guide to Your Baby Crying</h3>
206
+ <p class="text-gray-600 italic mb-6">Because every cry has a reason—and every parent deserves peace of mind.</p>
207
+
208
+ <div class="mb-6">
209
+ <h4 class="text-xl font-semibold text-indigo-600 mb-3">Why Do Babies Cry?</h4>
210
+ <p class="text-gray-600 mb-3">Babies cry to communicate. Common reasons include:</p>
211
+ <div class="grid md:grid-cols-2 gap-3 mb-4">
212
+ <div class="flex items-center">
213
+ <i class="fas fa-bottle text-pink-500 mr-2"></i>
214
+ <span>Hunger</span>
215
+ </div>
216
+ <div class="flex items-center">
217
+ <i class="fas fa-baby text-pink-500 mr-2"></i>
218
+ <span>Dirty diaper</span>
219
+ </div>
220
+ <div class="flex items-center">
221
+ <i class="fas fa-temperature-high text-pink-500 mr-2"></i>
222
+ <span>Feeling too hot or cold</span>
223
+ </div>
224
+ <div class="flex items-center">
225
+ <i class="fas fa-wind text-pink-500 mr-2"></i>
226
+ <span>Gas or tummy discomfort</span>
227
+ </div>
228
+ </div>
229
+ </div>
230
+
231
+ <div class="mb-6">
232
+ <h4 class="text-xl font-semibold text-indigo-600 mb-3">Soothing Strategies That Work</h4>
233
+ <div class="grid md:grid-cols-2 gap-4">
234
+ <div class="checklist-item">Offer feeding if it's close to mealtime</div>
235
+ <div class="checklist-item">Check and change diapers</div>
236
+ <div class="checklist-item">Swaddle for comfort and warmth</div>
237
+ <div class="checklist-item">Use gentle rocking or walking</div>
238
+ </div>
239
+ </div>
240
+
241
+ <a href="#" class="text-indigo-600 font-medium hover:text-indigo-700 flex items-center">
242
+ Read Full Guide <i class="fas fa-arrow-right ml-2"></i>
243
+ </a>
244
+ </div>
245
+ </div>
246
+ </div>
247
+
248
+ <!-- Bathing Guide -->
249
+ <div class="bg-white rounded-xl shadow-md overflow-hidden mb-12 guide-card">
250
+ <div class="md:flex flex-row-reverse">
251
+ <div class="md:w-1/3">
252
+ <img src="https://images.unsplash.com/photo-1596704017250-13a3d66a575e?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Baby bathing" class="w-full h-full object-cover">
253
+ </div>
254
+ <div class="md:w-2/3 p-8">
255
+ <h3 class="text-2xl font-bold text-gray-800 mb-2">🛁 Go-To Guide to Baby Bathing</h3>
256
+ <p class="text-gray-600 italic mb-6">Splash safely, soothe gently, and enjoy the bubbly moments.</p>
257
+
258
+ <div class="mb-6">
259
+ <h4 class="text-xl font-semibold text-indigo-600 mb-3">Steps to a Safe & Happy Bath:</h4>
260
+ <div class="grid md:grid-cols-2 gap-4">
261
+ <div class="flex items-start">
262
+ <div class="bg-indigo-100 rounded-full p-2 mr-3">
263
+ <i class="fas fa-check text-indigo-600"></i>
264
+ </div>
265
+ <span>Prep first — Gather everything you need before undressing baby</span>
266
+ </div>
267
+ <div class="flex items-start">
268
+ <div class="bg-indigo-100 rounded-full p-2 mr-3">
269
+ <i class="fas fa-check text-indigo-600"></i>
270
+ </div>
271
+ <span>Check temp — Water should be warm (about 98–100°F / 37–38°C)</span>
272
+ </div>
273
+ <div class="flex items-start">
274
+ <div class="bg-indigo-100 rounded-full p-2 mr-3">
275
+ <i class="fas fa-check text-indigo-600"></i>
276
+ </div>
277
+ <span>Use one hand — Support your baby at all times</span>
278
+ </div>
279
+ <div class="flex items-start">
280
+ <div class="bg-indigo-100 rounded-full p-2 mr-3">
281
+ <i class="fas fa-check text-indigo-600"></i>
282
+ </div>
283
+ <span>Gentle cleanser — Use mild, baby-safe soap sparingly</span>
284
+ </div>
285
+ </div>
286
+ </div>
287
+
288
+ <div class="bg-blue-50 p-4 rounded-lg mb-6">
289
+ <h4 class="font-semibold text-blue-600 mb-2">Bath Time Essentials Checklist</h4>
290
+ <div class="grid md:grid-cols-2 gap-2">
291
+ <div class="flex items-center">
292
+ <i class="fas fa-check-circle text-blue-400 mr-2"></i>
293
+ <span>Baby Bathtub or Bath Seat</span>
294
+ </div>
295
+ <div class="flex items-center">
296
+ <i class="fas fa-check-circle text-blue-400 mr-2"></i>
297
+ <span>Washcloths & Towels</span>
298
+ </div>
299
+ <div class="flex items-center">
300
+ <i class="fas fa-check-circle text-blue-400 mr-2"></i>
301
+ <span>Baby Soap & Shampoo</span>
302
+ </div>
303
+ <div class="flex items-center">
304
+ <i class="fas fa-check-circle text-blue-400 mr-2"></i>
305
+ <span>Bath Toys</span>
306
+ </div>
307
+ </div>
308
+ </div>
309
+
310
+ <a href="#" class="text-indigo-600 font-medium hover:text-indigo-700 flex items-center">
311
+ Read Full Guide <i class="fas fa-arrow-right ml-2"></i>
312
+ </a>
313
+ </div>
314
+ </div>
315
+ </div>
316
+
317
+ <!-- Medical Awareness Guide -->
318
+ <div class="bg-white rounded-xl shadow-md overflow-hidden guide-card">
319
+ <div class="md:flex">
320
+ <div class="md:w-1/3">
321
+ <img src="https://images.unsplash.com/photo-1579684385127-1ef15d508118?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Medical awareness" class="w-full h-full object-cover">
322
+ </div>
323
+ <div class="md:w-2/3 p-8">
324
+ <h3 class="text-2xl font-bold text-gray-800 mb-2">❤️ Baby Medical Awareness Cheat Sheet</h3>
325
+ <p class="text-gray-600 italic mb-6">Know the Signs • Stay Calm • Be Prepared</p>
326
+
327
+ <div class="overflow-x-auto mb-6">
328
+ <table class="min-w-full bg-white border border-gray-200">
329
+ <thead class="bg-indigo-50">
330
+ <tr>
331
+ <th class="py-2 px-4 border-b text-left">Illness</th>
332
+ <th class="py-2 px-4 border-b text-left">Early Signs</th>
333
+ <th class="py-2 px-4 border-b text-left">Bear-n-Buttons Essentials</th>
334
+ </tr>
335
+ </thead>
336
+ <tbody>
337
+ <tr class="hover:bg-gray-50">
338
+ <td class="py-2 px-4 border-b">Fever</td>
339
+ <td class="py-2 px-4 border-b">Warm forehead, flushed cheeks, fussy</td>
340
+ <td class="py-2 px-4 border-b">Baby thermometer, infant fever relief drops</td>
341
+ </tr>
342
+ <tr class="hover:bg-gray-50">
343
+ <td class="py-2 px-4 border-b">Cold/Congestion</td>
344
+ <td class="py-2 px-4 border-b">Runny nose, mild cough, sneezing</td>
345
+ <td class="py-2 px-4 border-b">Saline spray, nasal aspirator</td>
346
+ </tr>
347
+ <tr class="hover:bg-gray-50">
348
+ <td class="py-2 px-4 border-b">Teething</td>
349
+ <td class="py-2 px-4 border-b">Swollen gums, chewing, drooling</td>
350
+ <td class="py-2 px-4 border-b">Silicone teethers, natural teething gel</td>
351
+ </tr>
352
+ </tbody>
353
+ </table>
354
+ </div>
355
+
356
+ <div class="bg-pink-50 p-4 rounded-lg">
357
+ <h4 class="font-semibold text-pink-600 mb-2">Caregiver Tips:</h4>
358
+ <ul class="list-disc list-inside text-gray-600 space-y-1">
359
+ <li>Keep an updated baby care kit at home and in your diaper bag</li>
360
+ <li>Trust your parental instincts—you know your baby best</li>
361
+ <li>Always check product labels and age recommendations</li>
362
+ </ul>
363
+ </div>
364
+ </div>
365
+ </div>
366
+ </div>
367
+ </div>
368
+ </section>
369
+
370
+ <!-- Services Hero -->
371
+ <section class="hero-gradient py-16 md:py-24">
372
+ <div class="container mx-auto px-4 text-center">
373
+ <h1 class="text-4xl md:text-5xl font-bold text-gray-800 mb-6">Our Parent Support Services</h1>
374
+ <p class="text-lg text-gray-600 mb-8">Connecting you with trusted local professionals to make parenting easier.</p>
375
+ </div>
376
+ </section>
377
+
378
+ <!-- Services Section -->
379
+ <section class="py-16 bg-indigo-600 text-white">
380
+ <div class="container mx-auto px-4">
381
+ <h2 class="text-3xl font-bold text-center mb-12">Our Local Services</h2>
382
+
383
+ <div class="grid md:grid-cols-3 gap-8">
384
+ <!-- Babysitter Service -->
385
+ <div class="bg-white rounded-xl overflow-hidden shadow-lg service-card">
386
+ <img src="https://bear-n-buttons.com/cdn/shop/files/person-in-white-sits-looking-at-their-baby_f3a79d72-8b57-484a-8780-f682c87aa822.jpg?v=1745522776&width=3200" alt="Babysitter services" class="w-full h-48 object-cover">
387
+ <div class="p-6">
388
+ <div class="flex items-center mb-3">
389
+ <div class="bg-indigo-100 p-2 rounded-full mr-3">
390
+ <i class="fas fa-baby text-indigo-600"></i>
391
+ </div>
392
+ <h3 class="text-xl font-bold text-gray-800">Babysitter Services</h3>
393
+ </div>
394
+ <p class="text-gray-600 mb-4">Through our partnership with Care.com, finding a babysitter is simple and stress free. Whether you need a few hours for errands or a date night out.</p>
395
+ <a href="#" class="text-indigo-600 font-medium hover:text-indigo-700 flex items-center">
396
+ Explore <i class="fas fa-arrow-right ml-2"></i>
397
+ </a>
398
+ </div>
399
+ </div>
400
+
401
+ <!-- Task Service -->
402
+ <div class="bg-white rounded-xl overflow-hidden shadow-lg service-card">
403
+ <img src="https://bear-n-buttons.com/cdn/shop/files/collecting-order-at-curbside-from-retail-store.jpg?v=1745416651&width=3200" alt="Task services" class="w-full h-48 object-cover">
404
+ <div class="p-6">
405
+ <div class="flex items-center mb-3">
406
+ <div class="bg-indigo-100 p-2 rounded-full mr-3">
407
+ <i class="fas fa-tasks text-indigo-600"></i>
408
+ </div>
409
+ <h3 class="text-xl font-bold text-gray-800">Task Services</h3>
410
+ </div>
411
+ <p class="text-gray-600 mb-4">Need a little help? We've partnered with Taskrabbit to help you connect with skilled helpers for baby proofing, nursery setup, furniture assembly, and more.</p>
412
+ <a href="#" class="text-indigo-600 font-medium hover:text-indigo-700 flex items-center">
413
+ Explore <i class="fas fa-arrow-right ml-2"></i>
414
+ </a>
415
+ </div>
416
+ </div>
417
+
418
+ <!-- Catering Service -->
419
+ <div class="bg-white rounded-xl overflow-hidden shadow-lg service-card">
420
+ <img src="https://bear-n-buttons.com/cdn/shop/files/a-tower-of-cupcakes.jpg?v=1744692727&width=3200" alt="Catering services" class="w-full h-48 object-cover">
421
+ <div class="p-6">
422
+ <div class="flex items-center mb-3">
423
+ <div class="bg-indigo-100 p-2 rounded-full mr-3">
424
+ <i class="fas fa-utensils text-indigo-600"></i>
425
+ </div>
426
+ <h3 class="text-xl font-bold text-gray-800">Catering Services</h3>
427
+ </div>
428
+ <p class="text-gray-600 mb-4">Planning a baby shower or event should be joyful not stressful. That's why we've partnered with Thumbtack to help you quickly find the top local caterers.</p>
429
+ <a href="#" class="text-indigo-600 font-medium hover:text-indigo-700 flex items-center">
430
+ Explore <i class="fas fa-arrow-right ml-2"></i>
431
+ </a>
432
+ </div>
433
+ </div>
434
+ </div>
435
+ </div>
436
+ </section>
437
+
438
+ <!-- Categories Section -->
439
+ <section class="py-16 bg-white">
440
+ <div class="container mx-auto px-4">
441
+ <h2 class="text-3xl font-bold text-center text-gray-800 mb-12">You're set up for success</h2>
442
+
443
+ <div class="grid md:grid-cols-3 gap-8">
444
+ <!-- Love & Care -->
445
+ <div class="bg-pink-50 rounded-xl p-8 text-center feature-card transition duration-300">
446
+ <div class="bg-white w-16 h-16 rounded-full flex items-center justify-center mx-auto mb-6">
447
+ <i class="fas fa-heart text-2xl text-pink-500"></i>
448
+ </div>
449
+ <h3 class="text-xl font-bold text-gray-800 mb-3">Love & Care</h3>
450
+ <p class="text-gray-600 mb-5">Comfort your baby with love. From soft swaddles to soothing care essentials, find everything you need for tender moments.</p>
451
+ <a href="#" class="text-pink-600 font-medium hover:text-pink-700 flex items-center justify-center">
452
+ Shop Now <i class="fas fa-arrow-right ml-2"></i>
453
+ </a>
454
+ </div>
455
+
456
+ <!-- Baby Safety -->
457
+ <div class="bg-blue-50 rounded-xl p-8 text-center feature-card transition duration-300">
458
+ <div class="bg-white w-16 h-16 rounded-full flex items-center justify-center mx-auto mb-6">
459
+ <i class="fas fa-shield-alt text-2xl text-blue-500"></i>
460
+ </div>
461
+ <h3 class="text-xl font-bold text-gray-800 mb-3">Baby Safety</h3>
462
+ <p class="text-gray-600 mb-5">From corner protectors and outlet covers to baby monitors and smart thermometers, we offer carefully curated essentials.</p>
463
+ <a href="#" class="text-blue-600 font-medium hover:text-blue-700 flex items-center justify-center">
464
+ Shop Now <i class="fas fa-arrow-right ml-2"></i>
465
+ </a>
466
+ </div>
467
+
468
+ <!-- Learn & Grow -->
469
+ <div class="bg-purple-50 rounded-xl p-8 text-center feature-card transition duration-300">
470
+ <div class="bg-white w-16 h-16 rounded-full flex items-center justify-center mx-auto mb-6">
471
+ <i class="fas fa-book-open text-2xl text-purple-500"></i>
472
+ </div>
473
+ <h3 class="text-xl font-bold text-gray-800 mb-3">Learn & Grow</h3>
474
+ <p class="text-gray-600 mb-5">Our collection is filled with toys, books, and tools designed to spark curiosity and support your little one's milestones.</p>
475
+ <a href="#" class="text-purple-600 font-medium hover:text-purple-700 flex items-center justify-center">
476
+ Shop Now <i class="fas fa-arrow-right ml-2"></i>
477
+ </a>
478
+ </div>
479
+ </div>
480
+ </div>
481
+ </section>
482
+
483
+ <!-- Newsletter Section -->
484
+ <section class="py-16 bg-indigo-50">
485
+ <div class="container mx-auto px-4 max-w-4xl">
486
+ <div class="bg-white rounded-xl shadow-md p-8 md:p-10 text-center">
487
+ <h2 class="text-2xl md:text-3xl font-bold text-gray-800 mb-4">Join Our Parenting Community</h2>
488
+ <p class="text-gray-600 mb-6">Get parenting tips, exclusive offers, and updates delivered to your inbox.</p>
489
+ <form class="flex flex-col md:flex-row gap-4">
490
+ <input type="email" placeholder="Your email address" class="flex-grow px-4 py-3 rounded-lg border border-gray-300 focus:outline-none focus:ring-2 focus:ring-indigo-500">
491
+ <button type="submit" class="bg-indigo-600 hover:bg-indigo-700 text-white px-6 py-3 rounded-lg font-medium transition duration-300">Subscribe</button>
492
+ </form>
493
+ <p class="text-sm text-gray-500 mt-3">We respect your privacy. Unsubscribe at any time.</p>
494
+ </div>
495
+ </div>
496
+ </section>
497
+
498
+ <!-- About Hero -->
499
+ <section class="hero-gradient py-16 md:py-24">
500
+ <div class="container mx-auto px-4 flex flex-col md:flex-row items-center">
501
+ <div class="md:w-1/2 mb-10 md:mb-0">
502
+ <h1 class="text-4xl md:text-5xl font-bold text-gray-800 mb-6">Our Story</h1>
503
+ <p class="text-lg text-gray-600 mb-8">Bear-n-Buttons was founded in 2020 by parents, for parents. What started as a small local shop has grown into a trusted resource for families across the country.</p>
504
+ </div>
505
+ <div class="md:w-1/2 flex justify-center">
506
+ <img src="https://images.unsplash.com/photo-1600880292203-757bb62b4baf?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Our team" class="rounded-xl shadow-xl w-full max-w-lg">
507
+ </div>
508
+ </div>
509
+ </section>
510
+
511
+ <!-- Mission Section -->
512
+ <section class="py-16 bg-white">
513
+ <div class="container mx-auto px-4 text-center max-w-3xl">
514
+ <h2 class="text-3xl font-bold text-gray-800 mb-6">Our Mission</h2>
515
+ <p class="text-xl text-gray-600 mb-8">To make parenting easier by providing carefully curated products, trustworthy advice, and convenient services - all in one place.</p>
516
+ <div class="grid md:grid-cols-3 gap-8 mt-12">
517
+ <div>
518
+ <div class="bg-indigo-100 w-16 h-16 rounded-full flex items-center justify-center mx-auto mb-4">
519
+ <i class="fas fa-check text-indigo-600 text-2xl"></i>
520
+ </div>
521
+ <h3 class="text-xl font-semibold text-gray-800 mb-2">Quality</h3>
522
+ <p class="text-gray-600">Every product is personally tested by our team</p>
523
+ </div>
524
+ <div>
525
+ <div class="bg-indigo-100 w-16 h-16 rounded-full flex items-center justify-center mx-auto mb-4">
526
+ <i class="fas fa-hands-helping text-indigo-600 text-2xl"></i>
527
+ </div>
528
+ <h3 class="text-xl font-semibold text-gray-800 mb-2">Support</h3>
529
+ <p class="text-gray-600">Real parent-to-parent advice and resources</p>
530
+ </div>
531
+ <div>
532
+ <div class="bg-indigo-100 w-16 h-16 rounded-full flex items-center justify-center mx-auto mb-4">
533
+ <i class="fas fa-heart text-indigo-600 text-2xl"></i>
534
+ </div>
535
+ <h3 class="text-xl font-semibold text-gray-800 mb-2">Community</h3>
536
+ <p class="text-gray-600">Building connections between parents</p>
537
+ </div>
538
+ </div>
539
+ </div>
540
+ </section>
541
+
542
+ <!-- Footer -->
543
+ <footer class="bg-gray-800 text-white py-12">
544
+ <div class="container mx-auto px-4">
545
+ <div class="grid md:grid-cols-4 gap-8 mb-8">
546
+ <div>
547
+ <div class="flex items-center space-x-2 mb-4">
548
+ <i class="fas fa-bear text-3xl text-indigo-400"></i>
549
+ <span class="text-xl font-bold">Bear-n-Buttons</span>
550
+ </div>
551
+ <p class="text-gray-400">Your cozy online hub for all things baby — blending essential products with thoughtful services to support parents every step of the way.</p>
552
+ </div>
553
+ <div>
554
+ <h3 class="text-lg font-semibold mb-4">Shop</h3>
555
+ <ul class="space-y-2">
556
+ <li><a href="#" class="text-gray-400 hover:text-white">New Arrivals</a></li>
557
+ <li><a href="#" class="text-gray-400 hover:text-white">Maternity</a></li>
558
+ <li><a href="#" class="text-gray-400 hover:text-white">Baby Gear</a></li>
559
+ <li><a href="#" class="text-gray-400 hover:text-white">Toys & Books</a></li>
560
+ </ul>
561
+ </div>
562
+ <div>
563
+ <h3 class="text-lg font-semibold mb-4">Resources</h3>
564
+ <ul class="space-y-2">
565
+ <li><a href="#" class="text-gray-400 hover:text-white">Parenting Guides</a></li>
566
+ <li><a href="#" class="text-gray-400 hover:text-white">Baby Development</a></li>
567
+ <li><a href="#" class="text-gray-400 hover:text-white">Safety Tips</a></li>
568
+ <li><a href="#" class="text-gray-400 hover:text-white">FAQ</a></li>
569
+ </ul>
570
+ </div>
571
+ <div>
572
+ <h3 class="text-lg font-semibold mb-4">Connect</h3>
573
+ <div class="flex space-x-4 mb-4">
574
+ <a href="#" class="bg-gray-700 hover:bg-indigo-600 w-10 h-10 rounded-full flex items-center justify-center">
575
+ <i class="fab fa-facebook-f"></i>
576
+ </a>
577
+ <a href="#" class="bg-gray-700 hover:bg-indigo-600 w-10 h-10 rounded-full flex items-center justify-center">
578
+ <i class="fab fa-instagram"></i>
579
+ </a>
580
+ <a href="#" class="bg-gray-700 hover:bg-indigo-600 w-10 h-10 rounded-full flex items-center justify-center">
581
+ <i class="fab fa-pinterest-p"></i>
582
+ </a>
583
+ </div>
584
+ <p class="text-gray-400">[email protected]</p>
585
+ <p class="text-gray-400">+1 (555) 123-4567</p>
586
+ </div>
587
+ </div>
588
+ <div class="border-t border-gray-700 pt-8 flex flex-col md:flex-row justify-between items-center">
589
+ <p class="text-gray-400 mb-4 md:mb-0">© 2023 Bear-n-Buttons. All rights reserved.</p>
590
+ <div class="flex space-x-6">
591
+ <a href="#" class="text-gray-400 hover:text-white">Privacy Policy</a>
592
+ <a href="#" class="text-gray-400 hover:text-white">Terms of Service</a>
593
+ <a href="#" class="text-gray-400 hover:text-white">Shipping Policy</a>
594
+ </div>
595
+ </div>
596
+ </div>
597
+ </footer>
598
+
599
+ <script>
600
+ // Simple mobile menu toggle functionality
601
+ document.querySelector('button.md\\:hidden').addEventListener('click', function() {
602
+ // This would toggle a mobile menu in a real implementation
603
+ alert('Mobile menu would open here in a full implementation');
604
+ });
605
+ </script>
606
+ <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=Funkytownk/bandb" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
607
+ </html>