ice-cream / index.html
Yalexis's picture
Add 3 files
3777c7f verified
Raw
History Blame Contribute Delete
32.5 kB
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Scoops & Smiles | Artisanal Ice Cream</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;600;700&display=swap');
body {
font-family: 'Poppins', sans-serif;
background-color: #fff9f5;
}
.hero {
background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('https://images.unsplash.com/photo-1501443762994-82bd5dace89a?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
background-size: cover;
background-position: center;
}
.flavor-card:hover {
transform: translateY(-10px);
box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.flavor-card {
transition: all 0.3s ease;
}
.scoop {
width: 100px;
height: 100px;
border-radius: 50%;
position: relative;
box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.scoop::after {
content: '';
position: absolute;
top: -5px;
left: 10px;
width: 30px;
height: 15px;
background: rgba(255,255,255,0.5);
border-radius: 50%;
transform: rotate(45deg);
}
.flavor-1 { background-color: #f8c3cd; } /* Strawberry */
.flavor-2 { background-color: #f5e5c0; } /* Vanilla */
.flavor-3 { background-color: #c2b3a9; } /* Chocolate */
.flavor-4 { background-color: #a8d8ea; } /* Blueberry */
.flavor-5 { background-color: #f7d794; } /* Banana */
.flavor-6 { background-color: #d2a5d2; } /* Ube */
.animate-bounce-slow {
animation: bounce-slow 3s infinite;
}
@keyframes bounce-slow {
0%, 100% {
transform: translateY(0);
}
50% {
transform: translateY(-15px);
}
}
.parallax {
background-attachment: fixed;
background-position: center;
background-repeat: no-repeat;
background-size: cover;
}
</style>
</head>
<body>
<!-- Navigation -->
<nav class="bg-pink-50 shadow-md sticky top-0 z-50">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="flex justify-between h-20 items-center">
<div class="flex-shrink-0 flex items-center">
<i class="fas fa-ice-cream text-3xl text-pink-400 mr-2"></i>
<span class="text-xl font-bold text-pink-600">Scoops & Smiles</span>
</div>
<div class="hidden md:block">
<div class="ml-10 flex items-center space-x-8">
<a href="#home" class="text-pink-600 hover:text-pink-800 px-3 py-2 font-medium">Home</a>
<a href="#flavors" class="text-gray-600 hover:text-pink-600 px-3 py-2 font-medium">Flavors</a>
<a href="#about" class="text-gray-600 hover:text-pink-600 px-3 py-2 font-medium">About</a>
<a href="#locations" class="text-gray-600 hover:text-pink-600 px-3 py-2 font-medium">Locations</a>
<a href="#contact" class="text-gray-600 hover:text-pink-600 px-3 py-2 font-medium">Contact</a>
<button class="bg-pink-500 hover:bg-pink-600 text-white px-4 py-2 rounded-full font-medium transition duration-300">
Order Online
</button>
</div>
</div>
<div class="md:hidden">
<button id="mobile-menu-button" class="text-gray-600 hover:text-pink-600">
<i class="fas fa-bars text-2xl"></i>
</button>
</div>
</div>
</div>
<!-- Mobile menu -->
<div id="mobile-menu" class="hidden md:hidden bg-white shadow-lg">
<div class="px-2 pt-2 pb-3 space-y-1 sm:px-3">
<a href="#home" class="block px-3 py-2 text-base font-medium text-pink-600">Home</a>
<a href="#flavors" class="block px-3 py-2 text-base font-medium text-gray-600 hover:text-pink-600">Flavors</a>
<a href="#about" class="block px-3 py-2 text-base font-medium text-gray-600 hover:text-pink-600">About</a>
<a href="#locations" class="block px-3 py-2 text-base font-medium text-gray-600 hover:text-pink-600">Locations</a>
<a href="#contact" class="block px-3 py-2 text-base font-medium text-gray-600 hover:text-pink-600">Contact</a>
<button class="w-full bg-pink-500 hover:bg-pink-600 text-white px-4 py-2 rounded-full font-medium mt-2">
Order Online
</button>
</div>
</div>
</nav>
<!-- Hero Section -->
<section id="home" class="hero h-screen flex items-center justify-center text-center text-white">
<div class="px-4 sm:px-6 lg:px-8 max-w-4xl">
<h1 class="text-4xl md:text-6xl font-bold mb-6 animate-bounce-slow">Handcrafted Happiness</h1>
<p class="text-xl md:text-2xl mb-8">Artisanal ice cream made with love and the finest ingredients</p>
<div class="flex flex-col sm:flex-row justify-center gap-4">
<button class="bg-pink-500 hover:bg-pink-600 text-white px-8 py-3 rounded-full font-bold text-lg transition duration-300">
Our Flavors
</button>
<button class="bg-white hover:bg-gray-100 text-pink-600 px-8 py-3 rounded-full font-bold text-lg transition duration-300">
Find Us
</button>
</div>
</div>
</section>
<!-- Featured Flavors -->
<section id="flavors" class="py-16 bg-white">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-16">
<h2 class="text-3xl font-bold text-gray-900 mb-4">Our Signature Flavors</h2>
<p class="text-lg text-gray-600 max-w-3xl mx-auto">Each scoop is a masterpiece crafted with premium ingredients and a whole lot of love</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
<!-- Flavor 1 -->
<div class="flavor-card bg-pink-50 rounded-xl p-6 shadow-lg">
<div class="flex justify-center mb-6">
<div class="scoop flavor-1"></div>
</div>
<h3 class="text-2xl font-bold text-pink-700 mb-2">Strawberry Dream</h3>
<p class="text-gray-600 mb-4">Made with organic strawberries from local farms, this creamy delight will transport you to summer fields.</p>
<div class="flex justify-between items-center">
<span class="text-pink-600 font-bold">$4.50</span>
<button class="bg-pink-100 hover:bg-pink-200 text-pink-700 px-4 py-2 rounded-full text-sm font-medium">
Add to Cart
</button>
</div>
</div>
<!-- Flavor 2 -->
<div class="flavor-card bg-yellow-50 rounded-xl p-6 shadow-lg">
<div class="flex justify-center mb-6">
<div class="scoop flavor-2"></div>
</div>
<h3 class="text-2xl font-bold text-yellow-700 mb-2">Madagascar Vanilla</h3>
<p class="text-gray-600 mb-4">Pure vanilla bean from Madagascar creates this rich, aromatic classic that's anything but ordinary.</p>
<div class="flex justify-between items-center">
<span class="text-yellow-600 font-bold">$4.50</span>
<button class="bg-yellow-100 hover:bg-yellow-200 text-yellow-700 px-4 py-2 rounded-full text-sm font-medium">
Add to Cart
</button>
</div>
</div>
<!-- Flavor 3 -->
<div class="flavor-card bg-amber-50 rounded-xl p-6 shadow-lg">
<div class="flex justify-center mb-6">
<div class="scoop flavor-3"></div>
</div>
<h3 class="text-2xl font-bold text-amber-800 mb-2">Dark Chocolate Obsession</h3>
<p class="text-gray-600 mb-4">70% single-origin cocoa creates this intense chocolate experience for true connoisseurs.</p>
<div class="flex justify-between items-center">
<span class="text-amber-700 font-bold">$5.00</span>
<button class="bg-amber-100 hover:bg-amber-200 text-amber-700 px-4 py-2 rounded-full text-sm font-medium">
Add to Cart
</button>
</div>
</div>
<!-- Flavor 4 -->
<div class="flavor-card bg-blue-50 rounded-xl p-6 shadow-lg">
<div class="flex justify-center mb-6">
<div class="scoop flavor-4"></div>
</div>
<h3 class="text-2xl font-bold text-blue-600 mb-2">Blueberry Cheesecake</h3>
<p class="text-gray-600 mb-4">Creamy cheesecake ice cream swirled with homemade blueberry compote and graham cracker pieces.</p>
<div class="flex justify-between items-center">
<span class="text-blue-600 font-bold">$5.50</span>
<button class="bg-blue-100 hover:bg-blue-200 text-blue-700 px-4 py-2 rounded-full text-sm font-medium">
Add to Cart
</button>
</div>
</div>
<!-- Flavor 5 -->
<div class="flavor-card bg-amber-50 rounded-xl p-6 shadow-lg">
<div class="flex justify-center mb-6">
<div class="scoop flavor-5"></div>
</div>
<h3 class="text-2xl font-bold text-amber-600 mb-2">Caramelized Banana</h3>
<p class="text-gray-600 mb-4">Ripe bananas caramelized in brown sugar and swirled with ribbons of homemade salted caramel.</p>
<div class="flex justify-between items-center">
<span class="text-amber-600 font-bold">$5.00</span>
<button class="bg-amber-100 hover:bg-amber-200 text-amber-700 px-4 py-2 rounded-full text-sm font-medium">
Add to Cart
</button>
</div>
</div>
<!-- Flavor 6 -->
<div class="flavor-card bg-purple-50 rounded-xl p-6 shadow-lg">
<div class="flex justify-center mb-6">
<div class="scoop flavor-6"></div>
</div>
<h3 class="text-2xl font-bold text-purple-600 mb-2">Ube Magic</h3>
<p class="text-gray-600 mb-4">A Filipino favorite made with real purple yam, creating a uniquely sweet and nutty flavor profile.</p>
<div class="flex justify-between items-center">
<span class="text-purple-600 font-bold">$5.50</span>
<button class="bg-purple-100 hover:bg-purple-200 text-purple-700 px-4 py-2 rounded-full text-sm font-medium">
Add to Cart
</button>
</div>
</div>
</div>
<div class="text-center mt-12">
<button class="border-2 border-pink-500 text-pink-600 hover:bg-pink-500 hover:text-white px-8 py-3 rounded-full font-bold text-lg transition duration-300">
View All 32 Flavors
</button>
</div>
</div>
</section>
<!-- About Section -->
<section id="about" class="py-16 bg-pink-50">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="lg:flex items-center">
<div class="lg:w-1/2 mb-10 lg:mb-0 lg:pr-12">
<h2 class="text-3xl font-bold text-gray-900 mb-6">Our Story</h2>
<p class="text-gray-600 mb-4">Founded in 2010 by two childhood friends with a passion for dessert, Scoops & Smiles began as a small cart at local farmers markets.</p>
<p class="text-gray-600 mb-4">What started as a hobby quickly grew into a beloved local institution as word spread about our small-batch, handcrafted ice creams made with locally-sourced ingredients.</p>
<p class="text-gray-600 mb-6">Today, we still make every batch by hand in our kitchen, using traditional methods and never compromising on quality. Our mission is simple: to create moments of joy, one scoop at a time.</p>
<button class="bg-pink-500 hover:bg-pink-600 text-white px-6 py-2 rounded-full font-medium">
Meet Our Team
</button>
</div>
<div class="lg:w-1/2">
<div class="relative rounded-xl overflow-hidden shadow-lg">
<img src="https://images.unsplash.com/photo-1570197788417-0e82375c9371?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1180&q=80"
alt="Ice cream shop interior" class="w-full h-auto">
<div class="absolute bottom-0 left-0 right-0 bg-gradient-to-t from-black to-transparent p-6">
<h3 class="text-white text-xl font-bold">Our Flagship Store in Downtown</h3>
<p class="text-pink-200">Come visit our cozy shop with its retro charm</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Parallax Section -->
<section class="parallax h-64 md:h-96 flex items-center justify-center"
style="background-image: url('https://images.unsplash.com/photo-1551024506-0bccd828d307?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1557&q=80');">
<div class="text-center bg-white bg-opacity-80 p-8 rounded-xl max-w-2xl mx-4">
<h2 class="text-3xl font-bold text-gray-900 mb-4">Summer Special</h2>
<p class="text-xl text-gray-700 mb-6">Buy 2 scoops, get 1 free! Available all July long.</p>
<button class="bg-pink-500 hover:bg-pink-600 text-white px-8 py-3 rounded-full font-bold text-lg">
Redeem Offer
</button>
</div>
</section>
<!-- Locations Section -->
<section id="locations" class="py-16 bg-white">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-16">
<h2 class="text-3xl font-bold text-gray-900 mb-4">Our Locations</h2>
<p class="text-lg text-gray-600 max-w-3xl mx-auto">Find your nearest Scoops & Smiles shop</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8">
<!-- Location 1 -->
<div class="bg-gray-50 rounded-xl p-6 shadow-md hover:shadow-lg transition duration-300">
<div class="flex items-center mb-4">
<div class="bg-pink-100 p-3 rounded-full mr-4">
<i class="fas fa-store text-pink-600 text-xl"></i>
</div>
<h3 class="text-xl font-bold text-gray-900">Downtown</h3>
</div>
<p class="text-gray-600 mb-4"><i class="fas fa-map-marker-alt text-pink-500 mr-2"></i> 123 Sweet Street, Downtown</p>
<p class="text-gray-600 mb-4"><i class="fas fa-clock text-pink-500 mr-2"></i> Mon-Sun: 11AM - 10PM</p>
<p class="text-gray-600 mb-4"><i class="fas fa-phone text-pink-500 mr-2"></i> (555) 123-4567</p>
<button class="w-full bg-pink-500 hover:bg-pink-600 text-white py-2 rounded-full font-medium mt-2">
Get Directions
</button>
</div>
<!-- Location 2 -->
<div class="bg-gray-50 rounded-xl p-6 shadow-md hover:shadow-lg transition duration-300">
<div class="flex items-center mb-4">
<div class="bg-pink-100 p-3 rounded-full mr-4">
<i class="fas fa-store text-pink-600 text-xl"></i>
</div>
<h3 class="text-xl font-bold text-gray-900">Westside</h3>
</div>
<p class="text-gray-600 mb-4"><i class="fas fa-map-marker-alt text-pink-500 mr-2"></i> 456 Cream Avenue, Westside</p>
<p class="text-gray-600 mb-4"><i class="fas fa-clock text-pink-500 mr-2"></i> Mon-Sun: 12PM - 9PM</p>
<p class="text-gray-600 mb-4"><i class="fas fa-phone text-pink-500 mr-2"></i> (555) 234-5678</p>
<button class="w-full bg-pink-500 hover:bg-pink-600 text-white py-2 rounded-full font-medium mt-2">
Get Directions
</button>
</div>
<!-- Location 3 -->
<div class="bg-gray-50 rounded-xl p-6 shadow-md hover:shadow-lg transition duration-300">
<div class="flex items-center mb-4">
<div class="bg-pink-100 p-3 rounded-full mr-4">
<i class="fas fa-store text-pink-600 text-xl"></i>
</div>
<h3 class="text-xl font-bold text-gray-900">East Village</h3>
</div>
<p class="text-gray-600 mb-4"><i class="fas fa-map-marker-alt text-pink-500 mr-2"></i> 789 Cone Lane, East Village</p>
<p class="text-gray-600 mb-4"><i class="fas fa-clock text-pink-500 mr-2"></i> Mon-Sun: 1PM - 11PM</p>
<p class="text-gray-600 mb-4"><i class="fas fa-phone text-pink-500 mr-2"></i> (555) 345-6789</p>
<button class="w-full bg-pink-500 hover:bg-pink-600 text-white py-2 rounded-full font-medium mt-2">
Get Directions
</button>
</div>
</div>
</div>
</section>
<!-- Testimonials -->
<section class="py-16 bg-pink-50">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-16">
<h2 class="text-3xl font-bold text-gray-900 mb-4">What Our Customers Say</h2>
<p class="text-lg text-gray-600 max-w-3xl mx-auto">Don't just take our word for it - hear from our happy customers!</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8">
<!-- Testimonial 1 -->
<div class="bg-white rounded-xl p-6 shadow-md">
<div class="flex items-center mb-4">
<img src="https://randomuser.me/api/portraits/women/32.jpg" alt="Sarah J." class="w-12 h-12 rounded-full mr-4">
<div>
<h4 class="font-bold text-gray-900">Sarah J.</h4>
<div class="flex text-yellow-400">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
</div>
</div>
</div>
<p class="text-gray-600 italic">"The Ube Magic is out of this world! I drive 30 minutes just to get my weekly fix. Worth every mile!"</p>
</div>
<!-- Testimonial 2 -->
<div class="bg-white rounded-xl p-6 shadow-md">
<div class="flex items-center mb-4">
<img src="https://randomuser.me/api/portraits/men/54.jpg" alt="Michael T." class="w-12 h-12 rounded-full mr-4">
<div>
<h4 class="font-bold text-gray-900">Michael T.</h4>
<div class="flex text-yellow-400">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
</div>
</div>
</div>
<p class="text-gray-600 italic">"Best ice cream in the city! The Dark Chocolate Obsession is so rich and creamy - a chocolate lover's dream."</p>
</div>
<!-- Testimonial 3 -->
<div class="bg-white rounded-xl p-6 shadow-md">
<div class="flex items-center mb-4">
<img src="https://randomuser.me/api/portraits/women/68.jpg" alt="Emily R." class="w-12 h-12 rounded-full mr-4">
<div>
<h4 class="font-bold text-gray-900">Emily R.</h4>
<div class="flex text-yellow-400">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star-half-alt"></i>
</div>
</div>
</div>
<p class="text-gray-600 italic">"The staff is so friendly and they always let me sample new flavors before deciding. My kids love the Strawberry Dream!"</p>
</div>
</div>
</div>
</section>
<!-- Contact Section -->
<section id="contact" class="py-16 bg-white">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="lg:flex items-center gap-12">
<div class="lg:w-1/2 mb-10 lg:mb-0">
<h2 class="text-3xl font-bold text-gray-900 mb-6">Get In Touch</h2>
<p class="text-gray-600 mb-6">Have questions, feedback, or want to host an event with us? We'd love to hear from you!</p>
<div class="space-y-4">
<div class="flex items-start">
<div class="bg-pink-100 p-3 rounded-full mr-4">
<i class="fas fa-envelope text-pink-600"></i>
</div>
<div>
<h4 class="font-bold text-gray-900">Email Us</h4>
<p class="text-gray-600">hello@scoopsandsmiles.com</p>
</div>
</div>
<div class="flex items-start">
<div class="bg-pink-100 p-3 rounded-full mr-4">
<i class="fas fa-phone-alt text-pink-600"></i>
</div>
<div>
<h4 class="font-bold text-gray-900">Call Us</h4>
<p class="text-gray-600">(555) SCOO-PIES</p>
</div>
</div>
<div class="flex items-start">
<div class="bg-pink-100 p-3 rounded-full mr-4">
<i class="fas fa-hashtag text-pink-600"></i>
</div>
<div>
<h4 class="font-bold text-gray-900">Follow Us</h4>
<div class="flex space-x-4 mt-2">
<a href="#" class="text-pink-600 hover:text-pink-800"><i class="fab fa-instagram text-2xl"></i></a>
<a href="#" class="text-pink-600 hover:text-pink-800"><i class="fab fa-facebook text-2xl"></i></a>
<a href="#" class="text-pink-600 hover:text-pink-800"><i class="fab fa-twitter text-2xl"></i></a>
<a href="#" class="text-pink-600 hover:text-pink-800"><i class="fab fa-tiktok text-2xl"></i></a>
</div>
</div>
</div>
</div>
</div>
<div class="lg:w-1/2">
<form class="bg-gray-50 p-8 rounded-xl shadow-md">
<div class="mb-4">
<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-2 border border-gray-300 rounded-lg focus:ring-pink-500 focus:border-pink-500">
</div>
<div class="mb-4">
<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-2 border border-gray-300 rounded-lg focus:ring-pink-500 focus:border-pink-500">
</div>
<div class="mb-4">
<label for="subject" class="block text-gray-700 font-medium mb-2">Subject</label>
<select id="subject" class="w-full px-4 py-2 border border-gray-300 rounded-lg focus:ring-pink-500 focus:border-pink-500">
<option>General Inquiry</option>
<option>Catering/Events</option>
<option>Feedback</option>
<option>Other</option>
</select>
</div>
<div class="mb-6">
<label for="message" class="block text-gray-700 font-medium mb-2">Message</label>
<textarea id="message" rows="4" class="w-full px-4 py-2 border border-gray-300 rounded-lg focus:ring-pink-500 focus:border-pink-500"></textarea>
</div>
<button type="submit" class="w-full bg-pink-500 hover:bg-pink-600 text-white py-3 rounded-full font-bold">
Send Message
</button>
</form>
</div>
</div>
</div>
</section>
<!-- Newsletter -->
<section class="py-16 bg-pink-600 text-white">
<div class="max-w-4xl mx-auto px-4 sm:px-6 lg:px-8 text-center">
<h2 class="text-3xl font-bold mb-4">Join Our Sweet Community</h2>
<p class="text-xl mb-8">Sign up for our newsletter to get exclusive flavors, special offers, and sweet surprises!</p>
<form class="flex flex-col sm:flex-row gap-4 max-w-2xl mx-auto">
<input type="email" placeholder="Your email address" class="flex-grow px-6 py-3 rounded-full text-gray-900 focus:outline-none focus:ring-2 focus:ring-pink-300">
<button type="submit" class="bg-white hover:bg-gray-100 text-pink-600 px-8 py-3 rounded-full font-bold">
Subscribe
</button>
</form>
<p class="text-pink-100 mt-4 text-sm">We promise not to spam you. Unsubscribe anytime.</p>
</div>
</section>
<!-- Footer -->
<footer class="bg-gray-900 text-white py-12">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="grid grid-cols-1 md:grid-cols-4 gap-8">
<div>
<div class="flex items-center mb-4">
<i class="fas fa-ice-cream text-2xl text-pink-400 mr-2"></i>
<span class="text-xl font-bold">Scoops & Smiles</span>
</div>
<p class="text-gray-400">Creating sweet memories since 2010.</p>
<div class="flex space-x-4 mt-4">
<a href="#" class="text-gray-400 hover:text-white"><i class="fab fa-instagram"></i></a>
<a href="#" class="text-gray-400 hover:text-white"><i class="fab fa-facebook"></i></a>
<a href="#" class="text-gray-400 hover:text-white"><i class="fab fa-twitter"></i></a>
<a href="#" class="text-gray-400 hover:text-white"><i class="fab fa-tiktok"></i></a>
</div>
</div>
<div>
<h3 class="text-lg font-semibold mb-4">Quick Links</h3>
<ul class="space-y-2">
<li><a href="#home" class="text-gray-400 hover:text-white">Home</a></li>
<li><a href="#flavors" class="text-gray-400 hover:text-white">Flavors</a></li>
<li><a href="#about" class="text-gray-400 hover:text-white">About Us</a></li>
<li><a href="#locations" class="text-gray-400 hover:text-white">Locations</a></li>
<li><a href="#contact" class="text-gray-400 hover:text-white">Contact</a></li>
</ul>
</div>
<div>
<h3 class="text-lg font-semibold mb-4">Information</h3>
<ul class="space-y-2">
<li><a href="#" class="text-gray-400 hover:text-white">FAQ</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Shipping & Returns</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Privacy Policy</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Terms & Conditions</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Careers</a></li>
</ul>
</div>
<div>
<h3 class="text-lg font-semibold mb-4">Contact Info</h3>
<ul class="space-y-2">
<li class="flex items-start">
<i class="fas fa-map-marker-alt text-pink-400 mt-1 mr-2"></i>
<span class="text-gray-400">123 Sweet Street, Downtown</span>
</li>
<li class="flex items-start">
<i class="fas fa-phone-alt text-pink-400 mt-1 mr-2"></i>
<span class="text-gray-400">(555) SCOO-PIES</span>
</li>
<li class="flex items-start">
<i class="fas fa-envelope text-pink-400 mt-1 mr-2"></i>
<span class="text-gray-400">hello@scoopsandsmiles.com</span>
</li>
</ul>
</div>
</div>
</html>