Spaces:
Running
Running
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>Bear-n-Buttons - Your Cozy Baby Hub</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> | |
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap'); | |
body { | |
font-family: 'Poppins', sans-serif; | |
} | |
.hero-gradient { | |
background: linear-gradient(135deg, #f9f0ff 0%, #e3f2fd 100%); | |
} | |
.section-divider { | |
position: relative; | |
height: 80px; | |
overflow: hidden; | |
} | |
.section-divider::before { | |
content: ""; | |
position: absolute; | |
left: 0; | |
right: 0; | |
top: 0; | |
height: 100%; | |
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"); | |
background-size: cover; | |
transform: rotate(180deg); | |
} | |
.feature-card:hover { | |
transform: translateY(-5px); | |
box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); | |
} | |
.guide-card { | |
transition: all 0.3s ease; | |
} | |
.guide-card:hover { | |
transform: scale(1.02); | |
} | |
.service-card { | |
transition: all 0.3s ease; | |
} | |
.service-card:hover { | |
transform: translateY(-5px); | |
} | |
.checklist-item { | |
position: relative; | |
padding-left: 30px; | |
} | |
.checklist-item::before { | |
content: "✓"; | |
position: absolute; | |
left: 0; | |
color: #4f46e5; | |
font-weight: bold; | |
} | |
</style> | |
</head> | |
<body class="bg-gray-50"> | |
<!-- Navigation --> | |
<nav class="bg-white shadow-md sticky top-0 z-50"> | |
<div class="container mx-auto px-4 py-3 flex justify-between items-center"> | |
<div class="flex items-center space-x-2"> | |
<i class="fas fa-bear text-3xl text-indigo-600"></i> | |
<span class="text-xl font-bold text-gray-800">Bear-n-Buttons</span> | |
</div> | |
<div class="hidden md:flex space-x-8"> | |
<a href="index.html" class="text-gray-700 hover:text-indigo-600 font-medium">Home</a> | |
<a href="shop.html" class="text-indigo-600 font-medium">Shop</a> | |
<a href="guides.html" class="text-gray-700 hover:text-indigo-600 font-medium">Guides</a> | |
<a href="services.html" class="text-gray-700 hover:text-indigo-600 font-medium">Services</a> | |
<a href="about.html" class="text-gray-700 hover:text-indigo-600 font-medium">About</a> | |
</div> | |
<div class="flex items-center space-x-4"> | |
<a href="#" class="text-gray-700 hover:text-indigo-600"><i class="fas fa-search"></i></a> | |
<a href="#" class="text-gray-700 hover:text-indigo-600"><i class="fas fa-user"></i></a> | |
<a href="#" class="text-gray-700 hover:text-indigo-600"><i class="fas fa-shopping-cart"></i></a> | |
<button class="md:hidden text-gray-700"> | |
<i class="fas fa-bars"></i> | |
</button> | |
</div> | |
</div> | |
</nav> | |
<!-- Hero Section --> | |
<section class="hero-gradient py-16 md:py-24"> | |
<div class="container mx-auto px-4 text-center"> | |
<h1 class="text-4xl md:text-5xl font-bold text-gray-800 mb-6">Parenting Guides & Resources</h1> | |
<p class="text-lg text-gray-600 mb-8">Expert advice and practical tips for every stage of your parenting journey.</p> | |
</div> | |
</section> | |
<!-- Guides Categories --> | |
<section class="py-16 bg-white"> | |
<div class="container mx-auto px-4"> | |
<div class="grid md:grid-cols-3 gap-8"> | |
<div class="bg-pink-50 rounded-xl p-8 text-center"> | |
<div class="bg-white w-16 h-16 rounded-full flex items-center justify-center mx-auto mb-6"> | |
<i class="fas fa-baby-carriage text-2xl text-pink-500"></i> | |
</div> | |
<h3 class="text-xl font-bold text-gray-800 mb-3">Newborn Care</h3> | |
<p class="text-gray-600 mb-5">Essential guides for the first weeks and months with your newborn.</p> | |
<a href="#" class="text-pink-600 font-medium hover:text-pink-700">Browse Guides</a> | |
</div> | |
<div class="bg-blue-50 rounded-xl p-8 text-center"> | |
<div class="bg-white w-16 h-16 rounded-full flex items-center justify-center mx-auto mb-6"> | |
<i class="fas fa-child text-2xl text-blue-500"></i> | |
</div> | |
<h3 class="text-xl font-bold text-gray-800 mb-3">Toddler Development</h3> | |
<p class="text-gray-600 mb-5">Supporting your child's growth from first steps to first words.</p> | |
<a href="#" class="text-blue-600 font-medium hover:text-blue-700">Browse Guides</a> | |
</div> | |
<div class="bg-purple-50 rounded-xl p-8 text-center"> | |
<div class="bg-white w-16 h-16 rounded-full flex items-center justify-center mx-auto mb-6"> | |
<i class="fas fa-heartbeat text-2xl text-purple-500"></i> | |
</div> | |
<h3 class="text-xl font-bold text-gray-800 mb-3">Health & Safety</h3> | |
<p class="text-gray-600 mb-5">Keeping your little one safe and healthy at every stage.</p> | |
<a href="#" class="text-purple-600 font-medium hover:text-purple-700">Browse Guides</a> | |
</div> | |
</div> | |
</div> | |
</section> | |
<div class="container mx-auto px-4 flex flex-col md:flex-row items-center"> | |
<div class="md:w-1/2 mb-10 md:mb-0"> | |
<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> | |
<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> | |
<div class="flex space-x-4"> | |
<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> | |
<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> | |
</div> | |
</div> | |
<div class="md:w-1/2 flex justify-center"> | |
<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"> | |
</div> | |
</div> | |
</section> | |
<!-- Divider --> | |
<div class="section-divider"></div> | |
<!-- Maternity & Paternity Section --> | |
<section class="py-16 bg-white"> | |
<div class="container mx-auto px-4"> | |
<div class="grid md:grid-cols-2 gap-10"> | |
<!-- Maternity Card --> | |
<div class="bg-pink-50 rounded-xl p-8 flex flex-col md:flex-row items-center"> | |
<div class="md:w-1/3 mb-6 md:mb-0 flex justify-center"> | |
<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"> | |
</div> | |
<div class="md:w-2/3 md:pl-8"> | |
<h2 class="text-2xl font-bold text-gray-800 mb-3">Maternity</h2> | |
<h3 class="text-xl font-semibold text-pink-600 mb-4">🌸 Must-Haves for Every Mom-to-Be</h3> | |
<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> | |
<a href="#" class="text-pink-600 font-medium hover:text-pink-700 flex items-center"> | |
Checklist <i class="fas fa-arrow-right ml-2"></i> | |
</a> | |
</div> | |
</div> | |
<!-- Paternity Card --> | |
<div class="bg-blue-50 rounded-xl p-8 flex flex-col md:flex-row items-center"> | |
<div class="md:w-1/3 mb-6 md:mb-0 flex justify-center"> | |
<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"> | |
</div> | |
<div class="md:w-2/3 md:pl-8"> | |
<h2 class="text-2xl font-bold text-gray-800 mb-3">Paternity</h2> | |
<h3 class="text-xl font-semibold text-blue-600 mb-4">A Modern Guide for Dads-to-Be 🍼</h3> | |
<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> | |
<a href="#" class="text-blue-600 font-medium hover:text-blue-700 flex items-center"> | |
Learn More <i class="fas fa-arrow-right ml-2"></i> | |
</a> | |
</div> | |
</div> | |
</div> | |
</div> | |
</section> | |
<!-- New Parent Tips Section --> | |
<section class="py-16 bg-gray-50"> | |
<div class="container mx-auto px-4"> | |
<h2 class="text-3xl font-bold text-center text-gray-800 mb-12">New Parent Tips</h2> | |
<!-- Crying Guide --> | |
<div class="bg-white rounded-xl shadow-md overflow-hidden mb-12 guide-card"> | |
<div class="md:flex"> | |
<div class="md:w-1/3"> | |
<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"> | |
</div> | |
<div class="md:w-2/3 p-8"> | |
<h3 class="text-2xl font-bold text-gray-800 mb-2">🧸 Go-To Guide to Your Baby Crying</h3> | |
<p class="text-gray-600 italic mb-6">Because every cry has a reason—and every parent deserves peace of mind.</p> | |
<div class="mb-6"> | |
<h4 class="text-xl font-semibold text-indigo-600 mb-3">Why Do Babies Cry?</h4> | |
<p class="text-gray-600 mb-3">Babies cry to communicate. Common reasons include:</p> | |
<div class="grid md:grid-cols-2 gap-3 mb-4"> | |
<div class="flex items-center"> | |
<i class="fas fa-bottle text-pink-500 mr-2"></i> | |
<span>Hunger</span> | |
</div> | |
<div class="flex items-center"> | |
<i class="fas fa-baby text-pink-500 mr-2"></i> | |
<span>Dirty diaper</span> | |
</div> | |
<div class="flex items-center"> | |
<i class="fas fa-temperature-high text-pink-500 mr-2"></i> | |
<span>Feeling too hot or cold</span> | |
</div> | |
<div class="flex items-center"> | |
<i class="fas fa-wind text-pink-500 mr-2"></i> | |
<span>Gas or tummy discomfort</span> | |
</div> | |
</div> | |
</div> | |
<div class="mb-6"> | |
<h4 class="text-xl font-semibold text-indigo-600 mb-3">Soothing Strategies That Work</h4> | |
<div class="grid md:grid-cols-2 gap-4"> | |
<div class="checklist-item">Offer feeding if it's close to mealtime</div> | |
<div class="checklist-item">Check and change diapers</div> | |
<div class="checklist-item">Swaddle for comfort and warmth</div> | |
<div class="checklist-item">Use gentle rocking or walking</div> | |
</div> | |
</div> | |
<a href="#" class="text-indigo-600 font-medium hover:text-indigo-700 flex items-center"> | |
Read Full Guide <i class="fas fa-arrow-right ml-2"></i> | |
</a> | |
</div> | |
</div> | |
</div> | |
<!-- Bathing Guide --> | |
<div class="bg-white rounded-xl shadow-md overflow-hidden mb-12 guide-card"> | |
<div class="md:flex flex-row-reverse"> | |
<div class="md:w-1/3"> | |
<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"> | |
</div> | |
<div class="md:w-2/3 p-8"> | |
<h3 class="text-2xl font-bold text-gray-800 mb-2">🛁 Go-To Guide to Baby Bathing</h3> | |
<p class="text-gray-600 italic mb-6">Splash safely, soothe gently, and enjoy the bubbly moments.</p> | |
<div class="mb-6"> | |
<h4 class="text-xl font-semibold text-indigo-600 mb-3">Steps to a Safe & Happy Bath:</h4> | |
<div class="grid md:grid-cols-2 gap-4"> | |
<div class="flex items-start"> | |
<div class="bg-indigo-100 rounded-full p-2 mr-3"> | |
<i class="fas fa-check text-indigo-600"></i> | |
</div> | |
<span>Prep first — Gather everything you need before undressing baby</span> | |
</div> | |
<div class="flex items-start"> | |
<div class="bg-indigo-100 rounded-full p-2 mr-3"> | |
<i class="fas fa-check text-indigo-600"></i> | |
</div> | |
<span>Check temp — Water should be warm (about 98–100°F / 37–38°C)</span> | |
</div> | |
<div class="flex items-start"> | |
<div class="bg-indigo-100 rounded-full p-2 mr-3"> | |
<i class="fas fa-check text-indigo-600"></i> | |
</div> | |
<span>Use one hand — Support your baby at all times</span> | |
</div> | |
<div class="flex items-start"> | |
<div class="bg-indigo-100 rounded-full p-2 mr-3"> | |
<i class="fas fa-check text-indigo-600"></i> | |
</div> | |
<span>Gentle cleanser — Use mild, baby-safe soap sparingly</span> | |
</div> | |
</div> | |
</div> | |
<div class="bg-blue-50 p-4 rounded-lg mb-6"> | |
<h4 class="font-semibold text-blue-600 mb-2">Bath Time Essentials Checklist</h4> | |
<div class="grid md:grid-cols-2 gap-2"> | |
<div class="flex items-center"> | |
<i class="fas fa-check-circle text-blue-400 mr-2"></i> | |
<span>Baby Bathtub or Bath Seat</span> | |
</div> | |
<div class="flex items-center"> | |
<i class="fas fa-check-circle text-blue-400 mr-2"></i> | |
<span>Washcloths & Towels</span> | |
</div> | |
<div class="flex items-center"> | |
<i class="fas fa-check-circle text-blue-400 mr-2"></i> | |
<span>Baby Soap & Shampoo</span> | |
</div> | |
<div class="flex items-center"> | |
<i class="fas fa-check-circle text-blue-400 mr-2"></i> | |
<span>Bath Toys</span> | |
</div> | |
</div> | |
</div> | |
<a href="#" class="text-indigo-600 font-medium hover:text-indigo-700 flex items-center"> | |
Read Full Guide <i class="fas fa-arrow-right ml-2"></i> | |
</a> | |
</div> | |
</div> | |
</div> | |
<!-- Medical Awareness Guide --> | |
<div class="bg-white rounded-xl shadow-md overflow-hidden guide-card"> | |
<div class="md:flex"> | |
<div class="md:w-1/3"> | |
<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"> | |
</div> | |
<div class="md:w-2/3 p-8"> | |
<h3 class="text-2xl font-bold text-gray-800 mb-2">❤️ Baby Medical Awareness Cheat Sheet</h3> | |
<p class="text-gray-600 italic mb-6">Know the Signs • Stay Calm • Be Prepared</p> | |
<div class="overflow-x-auto mb-6"> | |
<table class="min-w-full bg-white border border-gray-200"> | |
<thead class="bg-indigo-50"> | |
<tr> | |
<th class="py-2 px-4 border-b text-left">Illness</th> | |
<th class="py-2 px-4 border-b text-left">Early Signs</th> | |
<th class="py-2 px-4 border-b text-left">Bear-n-Buttons Essentials</th> | |
</tr> | |
</thead> | |
<tbody> | |
<tr class="hover:bg-gray-50"> | |
<td class="py-2 px-4 border-b">Fever</td> | |
<td class="py-2 px-4 border-b">Warm forehead, flushed cheeks, fussy</td> | |
<td class="py-2 px-4 border-b">Baby thermometer, infant fever relief drops</td> | |
</tr> | |
<tr class="hover:bg-gray-50"> | |
<td class="py-2 px-4 border-b">Cold/Congestion</td> | |
<td class="py-2 px-4 border-b">Runny nose, mild cough, sneezing</td> | |
<td class="py-2 px-4 border-b">Saline spray, nasal aspirator</td> | |
</tr> | |
<tr class="hover:bg-gray-50"> | |
<td class="py-2 px-4 border-b">Teething</td> | |
<td class="py-2 px-4 border-b">Swollen gums, chewing, drooling</td> | |
<td class="py-2 px-4 border-b">Silicone teethers, natural teething gel</td> | |
</tr> | |
</tbody> | |
</table> | |
</div> | |
<div class="bg-pink-50 p-4 rounded-lg"> | |
<h4 class="font-semibold text-pink-600 mb-2">Caregiver Tips:</h4> | |
<ul class="list-disc list-inside text-gray-600 space-y-1"> | |
<li>Keep an updated baby care kit at home and in your diaper bag</li> | |
<li>Trust your parental instincts—you know your baby best</li> | |
<li>Always check product labels and age recommendations</li> | |
</ul> | |
</div> | |
</div> | |
</div> | |
</div> | |
</div> | |
</section> | |
<!-- Services Hero --> | |
<section class="hero-gradient py-16 md:py-24"> | |
<div class="container mx-auto px-4 text-center"> | |
<h1 class="text-4xl md:text-5xl font-bold text-gray-800 mb-6">Our Parent Support Services</h1> | |
<p class="text-lg text-gray-600 mb-8">Connecting you with trusted local professionals to make parenting easier.</p> | |
</div> | |
</section> | |
<!-- Services Section --> | |
<section class="py-16 bg-indigo-600 text-white"> | |
<div class="container mx-auto px-4"> | |
<h2 class="text-3xl font-bold text-center mb-12">Our Local Services</h2> | |
<div class="grid md:grid-cols-3 gap-8"> | |
<!-- Babysitter Service --> | |
<div class="bg-white rounded-xl overflow-hidden shadow-lg service-card"> | |
<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"> | |
<div class="p-6"> | |
<div class="flex items-center mb-3"> | |
<div class="bg-indigo-100 p-2 rounded-full mr-3"> | |
<i class="fas fa-baby text-indigo-600"></i> | |
</div> | |
<h3 class="text-xl font-bold text-gray-800">Babysitter Services</h3> | |
</div> | |
<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> | |
<a href="#" class="text-indigo-600 font-medium hover:text-indigo-700 flex items-center"> | |
Explore <i class="fas fa-arrow-right ml-2"></i> | |
</a> | |
</div> | |
</div> | |
<!-- Task Service --> | |
<div class="bg-white rounded-xl overflow-hidden shadow-lg service-card"> | |
<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"> | |
<div class="p-6"> | |
<div class="flex items-center mb-3"> | |
<div class="bg-indigo-100 p-2 rounded-full mr-3"> | |
<i class="fas fa-tasks text-indigo-600"></i> | |
</div> | |
<h3 class="text-xl font-bold text-gray-800">Task Services</h3> | |
</div> | |
<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> | |
<a href="#" class="text-indigo-600 font-medium hover:text-indigo-700 flex items-center"> | |
Explore <i class="fas fa-arrow-right ml-2"></i> | |
</a> | |
</div> | |
</div> | |
<!-- Catering Service --> | |
<div class="bg-white rounded-xl overflow-hidden shadow-lg service-card"> | |
<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"> | |
<div class="p-6"> | |
<div class="flex items-center mb-3"> | |
<div class="bg-indigo-100 p-2 rounded-full mr-3"> | |
<i class="fas fa-utensils text-indigo-600"></i> | |
</div> | |
<h3 class="text-xl font-bold text-gray-800">Catering Services</h3> | |
</div> | |
<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> | |
<a href="#" class="text-indigo-600 font-medium hover:text-indigo-700 flex items-center"> | |
Explore <i class="fas fa-arrow-right ml-2"></i> | |
</a> | |
</div> | |
</div> | |
</div> | |
</div> | |
</section> | |
<!-- Categories Section --> | |
<section class="py-16 bg-white"> | |
<div class="container mx-auto px-4"> | |
<h2 class="text-3xl font-bold text-center text-gray-800 mb-12">You're set up for success</h2> | |
<div class="grid md:grid-cols-3 gap-8"> | |
<!-- Love & Care --> | |
<div class="bg-pink-50 rounded-xl p-8 text-center feature-card transition duration-300"> | |
<div class="bg-white w-16 h-16 rounded-full flex items-center justify-center mx-auto mb-6"> | |
<i class="fas fa-heart text-2xl text-pink-500"></i> | |
</div> | |
<h3 class="text-xl font-bold text-gray-800 mb-3">Love & Care</h3> | |
<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> | |
<a href="#" class="text-pink-600 font-medium hover:text-pink-700 flex items-center justify-center"> | |
Shop Now <i class="fas fa-arrow-right ml-2"></i> | |
</a> | |
</div> | |
<!-- Baby Safety --> | |
<div class="bg-blue-50 rounded-xl p-8 text-center feature-card transition duration-300"> | |
<div class="bg-white w-16 h-16 rounded-full flex items-center justify-center mx-auto mb-6"> | |
<i class="fas fa-shield-alt text-2xl text-blue-500"></i> | |
</div> | |
<h3 class="text-xl font-bold text-gray-800 mb-3">Baby Safety</h3> | |
<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> | |
<a href="#" class="text-blue-600 font-medium hover:text-blue-700 flex items-center justify-center"> | |
Shop Now <i class="fas fa-arrow-right ml-2"></i> | |
</a> | |
</div> | |
<!-- Learn & Grow --> | |
<div class="bg-purple-50 rounded-xl p-8 text-center feature-card transition duration-300"> | |
<div class="bg-white w-16 h-16 rounded-full flex items-center justify-center mx-auto mb-6"> | |
<i class="fas fa-book-open text-2xl text-purple-500"></i> | |
</div> | |
<h3 class="text-xl font-bold text-gray-800 mb-3">Learn & Grow</h3> | |
<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> | |
<a href="#" class="text-purple-600 font-medium hover:text-purple-700 flex items-center justify-center"> | |
Shop Now <i class="fas fa-arrow-right ml-2"></i> | |
</a> | |
</div> | |
</div> | |
</div> | |
</section> | |
<!-- Newsletter Section --> | |
<section class="py-16 bg-indigo-50"> | |
<div class="container mx-auto px-4 max-w-4xl"> | |
<div class="bg-white rounded-xl shadow-md p-8 md:p-10 text-center"> | |
<h2 class="text-2xl md:text-3xl font-bold text-gray-800 mb-4">Join Our Parenting Community</h2> | |
<p class="text-gray-600 mb-6">Get parenting tips, exclusive offers, and updates delivered to your inbox.</p> | |
<form class="flex flex-col md:flex-row gap-4"> | |
<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"> | |
<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> | |
</form> | |
<p class="text-sm text-gray-500 mt-3">We respect your privacy. Unsubscribe at any time.</p> | |
</div> | |
</div> | |
</section> | |
<!-- About Hero --> | |
<section class="hero-gradient py-16 md:py-24"> | |
<div class="container mx-auto px-4 flex flex-col md:flex-row items-center"> | |
<div class="md:w-1/2 mb-10 md:mb-0"> | |
<h1 class="text-4xl md:text-5xl font-bold text-gray-800 mb-6">Our Story</h1> | |
<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> | |
</div> | |
<div class="md:w-1/2 flex justify-center"> | |
<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"> | |
</div> | |
</div> | |
</section> | |
<!-- Mission Section --> | |
<section class="py-16 bg-white"> | |
<div class="container mx-auto px-4 text-center max-w-3xl"> | |
<h2 class="text-3xl font-bold text-gray-800 mb-6">Our Mission</h2> | |
<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> | |
<div class="grid md:grid-cols-3 gap-8 mt-12"> | |
<div> | |
<div class="bg-indigo-100 w-16 h-16 rounded-full flex items-center justify-center mx-auto mb-4"> | |
<i class="fas fa-check text-indigo-600 text-2xl"></i> | |
</div> | |
<h3 class="text-xl font-semibold text-gray-800 mb-2">Quality</h3> | |
<p class="text-gray-600">Every product is personally tested by our team</p> | |
</div> | |
<div> | |
<div class="bg-indigo-100 w-16 h-16 rounded-full flex items-center justify-center mx-auto mb-4"> | |
<i class="fas fa-hands-helping text-indigo-600 text-2xl"></i> | |
</div> | |
<h3 class="text-xl font-semibold text-gray-800 mb-2">Support</h3> | |
<p class="text-gray-600">Real parent-to-parent advice and resources</p> | |
</div> | |
<div> | |
<div class="bg-indigo-100 w-16 h-16 rounded-full flex items-center justify-center mx-auto mb-4"> | |
<i class="fas fa-heart text-indigo-600 text-2xl"></i> | |
</div> | |
<h3 class="text-xl font-semibold text-gray-800 mb-2">Community</h3> | |
<p class="text-gray-600">Building connections between parents</p> | |
</div> | |
</div> | |
</div> | |
</section> | |
<!-- Footer --> | |
<footer class="bg-gray-800 text-white py-12"> | |
<div class="container mx-auto px-4"> | |
<div class="grid md:grid-cols-4 gap-8 mb-8"> | |
<div> | |
<div class="flex items-center space-x-2 mb-4"> | |
<i class="fas fa-bear text-3xl text-indigo-400"></i> | |
<span class="text-xl font-bold">Bear-n-Buttons</span> | |
</div> | |
<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> | |
</div> | |
<div> | |
<h3 class="text-lg font-semibold mb-4">Shop</h3> | |
<ul class="space-y-2"> | |
<li><a href="#" class="text-gray-400 hover:text-white">New Arrivals</a></li> | |
<li><a href="#" class="text-gray-400 hover:text-white">Maternity</a></li> | |
<li><a href="#" class="text-gray-400 hover:text-white">Baby Gear</a></li> | |
<li><a href="#" class="text-gray-400 hover:text-white">Toys & Books</a></li> | |
</ul> | |
</div> | |
<div> | |
<h3 class="text-lg font-semibold mb-4">Resources</h3> | |
<ul class="space-y-2"> | |
<li><a href="#" class="text-gray-400 hover:text-white">Parenting Guides</a></li> | |
<li><a href="#" class="text-gray-400 hover:text-white">Baby Development</a></li> | |
<li><a href="#" class="text-gray-400 hover:text-white">Safety Tips</a></li> | |
<li><a href="#" class="text-gray-400 hover:text-white">FAQ</a></li> | |
</ul> | |
</div> | |
<div> | |
<h3 class="text-lg font-semibold mb-4">Connect</h3> | |
<div class="flex space-x-4 mb-4"> | |
<a href="#" class="bg-gray-700 hover:bg-indigo-600 w-10 h-10 rounded-full flex items-center justify-center"> | |
<i class="fab fa-facebook-f"></i> | |
</a> | |
<a href="#" class="bg-gray-700 hover:bg-indigo-600 w-10 h-10 rounded-full flex items-center justify-center"> | |
<i class="fab fa-instagram"></i> | |
</a> | |
<a href="#" class="bg-gray-700 hover:bg-indigo-600 w-10 h-10 rounded-full flex items-center justify-center"> | |
<i class="fab fa-pinterest-p"></i> | |
</a> | |
</div> | |
<p class="text-gray-400">[email protected]</p> | |
<p class="text-gray-400">+1 (555) 123-4567</p> | |
</div> | |
</div> | |
<div class="border-t border-gray-700 pt-8 flex flex-col md:flex-row justify-between items-center"> | |
<p class="text-gray-400 mb-4 md:mb-0">© 2023 Bear-n-Buttons. All rights reserved.</p> | |
<div class="flex space-x-6"> | |
<a href="#" class="text-gray-400 hover:text-white">Privacy Policy</a> | |
<a href="#" class="text-gray-400 hover:text-white">Terms of Service</a> | |
<a href="#" class="text-gray-400 hover:text-white">Shipping Policy</a> | |
</div> | |
</div> | |
</div> | |
</footer> | |
<script> | |
// Simple mobile menu toggle functionality | |
document.querySelector('button.md\\:hidden').addEventListener('click', function() { | |
// This would toggle a mobile menu in a real implementation | |
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=Funkytownk/bandb" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body> | |
</html> |