Spaces:
Running
Running
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>Auntie Nan's Kitchen | Gourmet Dinners Delivered</title> | |
| <script src="https://cdn.tailwindcss.com"></script> | |
| <link href="https://unpkg.com/aos@2.3.1/dist/aos.css" rel="stylesheet"> | |
| <script src="https://unpkg.com/aos@2.3.1/dist/aos.js"></script> | |
| <script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script> | |
| <style> | |
| .hero-bg { | |
| background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('http://static.photos/food/1200x630/301'); | |
| background-size: cover; | |
| background-position: center; | |
| } | |
| .meal-card:hover { | |
| transform: translateY(-8px); | |
| box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15); | |
| } | |
| .meal-card { | |
| transition: all 0.3s ease; | |
| } | |
| .gradient-bg { | |
| background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); | |
| } | |
| </style> | |
| <script> | |
| tailwind.config = { | |
| theme: { | |
| extend: { | |
| colors: { | |
| primary: '#8B4513', | |
| secondary: '#FF6B6B', | |
| accent: '#4ECDC4', | |
| } | |
| } | |
| } | |
| } | |
| </script> | |
| </head> | |
| <body class="font-sans"> | |
| <!-- Navigation --> | |
| <nav class="gradient-bg text-white sticky top-0 z-50 shadow-lg"> | |
| <div class="container mx-auto px-6 py-4 flex justify-between items-center"> | |
| <a href="aunty-nans-kitchen.html" class="text-2xl font-bold flex items-center"> | |
| <i data-feather="home" class="mr-2"></i> | |
| Auntie Nan's Kitchen | |
| </a> | |
| <div class="hidden md:flex space-x-8"> | |
| <a href="aunty-nans-kitchen.html" class="hover:text-accent font-bold">Home</a> | |
| <a href="menu.html" class="hover:text-accent">Menu</a> | |
| <a href="about.html" class="hover:text-accent">About</a> | |
| <a href="contact.html" class="hover:text-accent">Contact</a> | |
| <a href="gallery.html" class="hover:text-accent">Gallery</a> | |
| </div> | |
| <button class="md:hidden"> | |
| <i data-feather="menu"></i> | |
| </button> | |
| </div> | |
| </nav> | |
| <!-- Hero Section --> | |
| <section class="hero-bg text-white py-32 px-6 text-center"> | |
| <div class="max-w-4xl mx-auto" data-aos="fade-up"> | |
| <h1 class="text-5xl md:text-6xl font-bold mb-6">Gourmet Dinners Delivered To Your Home</h1> | |
| <p class="text-xl mb-8">Experience the warmth of home-cooked meals with the sophistication of gourmet dining. Fresh, delicious, and delivered right to your doorstep.</p> | |
| <div class="flex flex-col sm:flex-row justify-center space-y-4 sm:space-y-0 sm:space-x-6"> | |
| <button class="bg-secondary hover:bg-red-500 text-white font-bold py-3 px-8 rounded-full transition duration-300"> | |
| Order Tonight's Dinner | |
| </button> | |
| <button class="border-2 border-white hover:bg-white hover:text-primary text-white font-bold py-3 px-8 rounded-full transition duration-300"> | |
| View Weekly Menu | |
| </button> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- How It Works --> | |
| <section class="py-16 px-6"> | |
| <div class="container mx-auto"> | |
| <h2 class="text-3xl font-bold text-center mb-12 text-primary" data-aos="fade-up">How It Works</h2> | |
| <div class="grid grid-cols-1 md:grid-cols-3 gap-8"> | |
| <div class="text-center" data-aos="fade-up" data-aos-delay="100"> | |
| <div class="bg-primary rounded-full w-20 h-20 flex items-center justify-center mx-auto mb-6"> | |
| <i data-feather="clipboard" class="text-white text-3xl"></i> | |
| </div> | |
| <h3 class="text-xl font-bold mb-4 text-primary">1. Choose Your Meals</h3> | |
| <p class="text-gray-700">Browse our rotating menu of chef-crafted dinners and select your favorites</p> | |
| </div> | |
| <div class="text-center" data-aos="fade-up" data-aos-delay="200"> | |
| <div class="bg-primary rounded-full w-20 h-20 flex items-center justify-center mx-auto mb-6"> | |
| <i data-feather="clock" class="text-white text-3xl"></i> | |
| </div> | |
| <h3 class="text-xl font-bold mb-4 text-primary">2. Schedule Delivery</h3> | |
| <p class="text-gray-700">Pick your preferred delivery date and time. We deliver fresh, never frozen</p> | |
| </div> | |
| <div class="text-center" data-aos="fade-up" data-aos-delay="300"> | |
| <div class="bg-primary rounded-full w-20 h-20 flex items-center justify-center mx-auto mb-6"> | |
| <i data-feather="heart" class="text-white text-3xl"></i> | |
| </div> | |
| <h3 class="text-xl font-bold mb-4 text-primary">3. Heat & Enjoy</h3> | |
| <p class="text-gray-700">Simple reheating instructions included. Dinner is ready in minutes</p> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Featured Meals --> | |
| <section class="py-16 px-6"> | |
| <div class="container mx-auto"> | |
| <h2 class="text-3xl font-bold text-center mb-12 text-primary" data-aos="fade-up">This Week's Favorites</h2> | |
| <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8"> | |
| <!-- Herb Crusted Salmon --> | |
| <div class="meal-card rounded-lg overflow-hidden shadow-md" data-aos="fade-up" data-aos-delay="100"> | |
| <img src="http://static.photos/food/640x360/302" alt="Herb Crusted Salmon" class="w-full h-48 object-cover"> | |
| <div class="p-6"> | |
| <h3 class="text-xl font-bold mb-2 text-primary">Herb Crusted Salmon</h3> | |
| <p class="text-gray-600 mb-4">Atlantic salmon with fresh herbs, lemon butter sauce, and roasted asparagus</p> | |
| <div class="flex justify-between items-center"> | |
| <span class="font-bold text-accent">$24.99</span> | |
| <button class="bg-primary hover:bg-brown-800 text-white font-bold py-2 px-4 rounded-full transition duration-300"> | |
| Add to Order | |
| </button> | |
| </div> | |
| </div> | |
| </div> | |
| <!-- Braised Short Ribs --> | |
| <div class="meal-card rounded-lg overflow-hidden shadow-md" data-aos="fade-up" data-aos-delay="200"> | |
| <img src="http://static.photos/food/640x360/303" alt="Braised Short Ribs" class="w-full h-48 object-cover"> | |
| <div class="p-6"> | |
| <h3 class="text-xl font-bold mb-2 text-primary">Braised Short Ribs</h3> | |
| <p class="text-gray-600 mb-4">Tender beef short ribs with red wine reduction and creamy mashed potatoes</p> | |
| <div class="flex justify-between items-center"> | |
| <span class="font-bold text-accent">$26.99</span> | |
| <button class="bg-primary hover:bg-brown-800 text-white font-bold py-2 px-4 rounded-full transition duration-300"> | |
| Add to Order | |
| </button> | |
| </div> | |
| </div> | |
| </div> | |
| <!-- Wild Mushroom Risotto --> | |
| <div class="meal-card rounded-lg overflow-hidden shadow-md" data-aos="fade-up" data-aos-delay="300"> | |
| <img src="http://static.photos/food/640x360/304" alt="Wild Mushroom Risotto" class="w-full h-48 object-cover"> | |
| <div class="p-6"> | |
| <h3 class="text-xl font-bold mb-2 text-primary">Wild Mushroom Risotto</h3> | |
| <p class="text-gray-600 mb-4">Arborio rice with seasonal wild mushrooms, white wine, and parmesan</p> | |
| <div class="flex justify-between items-center"> | |
| <span class="font-bold text-accent">$19.99</span> | |
| <button class="bg-primary hover:bg-brown-800 text-white font-bold py-2 px-4 rounded-full transition duration-300"> | |
| Add to Order | |
| </button> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Why Choose Us --> | |
| <section class="py-16 px-6 bg-primary text-white"> | |
| <div class="container mx-auto max-w-4xl"> | |
| <h2 class="text-3xl font-bold text-center mb-12" data-aos="fade-up">Why Choose Auntie Nan's Kitchen</h2> | |
| <div class="grid grid-cols-1 md:grid-cols-2 gap-8"> | |
| <div class="text-center" data-aos="fade-up" data-aos-delay="100"> | |
| <i data-feather="star" class="text-amber-400 text-4xl mb-4"></i> | |
| <h3 class="text-xl font-bold mb-4">Chef-Crafted Recipes</h3> | |
| <p class="text-amber-100">Every dish is designed by our executive chef with over 20 years of fine dining experience</p> | |
| </div> | |
| <div class="text-center" data-aos="fade-up" data-aos-delay="200"> | |
| <i data-feather="truck" class="text-accent text-4xl mb-4"></i> | |
| <h3 class="text-xl font-bold mb-4">Fresh Ingredients</h3> | |
| <p class="text-amber-100">We source local, organic ingredients whenever possible for the best flavor</p> | |
| </div> | |
| <div class="text-center" data-aos="fade-up" data-aos-delay="300"> | |
| <i data-feather="clock" class="text-secondary text-4xl mb-4"></i> | |
| <h3 class="text-xl font-bold mb-4">Easy Preparation</h3> | |
| <p class="text-amber-100">Most meals are ready in 15-20 minutes with simple reheating instructions</p> | |
| </div> | |
| <div class="text-center" data-aos="fade-up" data-aos-delay="400"> | |
| <i data-feather="award" class="text-amber-400 text-4xl mb-4"></i> | |
| <h3 class="text-xl font-bold mb-4">Dietary Options</h3> | |
| <p class="text-amber-100">Gluten-free, vegetarian, and other dietary preferences accommodated</p> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Testimonials --> | |
| <section class="py-16 px-6"> | |
| <div class="container mx-auto"> | |
| <h2 class="text-3xl font-bold text-center mb-12 text-primary" data-aos="fade-up">What Our Customers Say</h2> | |
| <div class="grid grid-cols-1 md:grid-cols-2 gap-8"> | |
| <div class="p-6 rounded-lg shadow-sm" data-aos="fade-up" data-aos-delay="100"> | |
| <div class="flex items-center mb-4"> | |
| <i data-feather="star" class="text-amber-500 mr-1"></i> | |
| <i data-feather="star" class="text-amber-500 mr-1"></i> | |
| <i data-feather="star" class="text-amber-500 mr-1"></i> | |
| <i data-feather="star" class="text-amber-500 mr-1"></i> | |
| <i data-feather="star" class="text-amber-500"></i> | |
| </div> | |
| <p class="text-gray-700 mb-4">"Auntie Nan's Kitchen has transformed our weeknight dinners. The braised short ribs tasted like they came from a five-star restaurant!"</p> | |
| <div class="flex items-center"> | |
| <img src="http://static.photos/people/200x200/305" alt="Customer" class="w-10 h-10 rounded-full mr-3"> | |
| <span class="font-medium">Jennifer R.</span> | |
| </div> | |
| </div> | |
| <div class="p-6 rounded-lg shadow-sm" data-aos="fade-up" data-aos-delay="200"> | |
| <div class="flex items-center mb-4"> | |
| <i data-feather="star" class="text-amber-500 mr-1"></i> | |
| <i data-feather="star" class="text-amber-500 mr-1"></i> | |
| <i data-feather="star" class="text-amber-500 mr-1"></i> | |
| <i data-feather="star" class="text-amber-500 mr-1"></i> | |
| <i data-feather="star" class="text-amber-500"></i> | |
| </div> | |
| <p class="text-gray-700 mb-4">"As a busy professional, I don't have time to cook. Auntie Nan's delivers restaurant-quality meals that make me feel like I'm dining out at home."</p> | |
| <div class="flex items-center"> | |
| <img src="http://static.photos/people/200x200/306" alt="Customer" class="w-10 h-10 rounded-full mr-3"> | |
| <span class="font-medium">David M.</span> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- CTA Section --> | |
| <section class="py-16 px-6 gradient-bg text-white text-center"> | |
| <div class="max-w-3xl mx-auto" data-aos="fade-up"> | |
| <h2 class="text-3xl font-bold mb-6">Ready for a Gourmet Experience at Home?</h2> | |
| <p class="text-xl mb-8">Order by 2pm Wednesday for Thursday Afternoon delivery. Perfect for busy families, date nights, or when you simply deserve something special.</p> | |
| <div class="flex flex-col sm:flex-row justify-center space-y-4 sm:space-y-0 sm:space-x-6"> | |
| <button class="bg-secondary hover:bg-red-500 text-white font-bold py-3 px-8 rounded-full transition duration-300"> | |
| Order Your First Meal | |
| </button> | |
| <button class="border-2 border-white hover:bg-white hover:text-primary text-white font-bold py-3 px-8 rounded-full transition duration-300"> | |
| View Full Menu | |
| </button> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Footer --> | |
| <footer class="bg-primary text-white py-12 px-6"> | |
| <div class="container mx-auto"> | |
| <div class="grid grid-cols-1 md:grid-cols-4 gap-8"> | |
| <div> | |
| <h3 class="text-xl font-bold mb-4">Auntie Nan's Kitchen</h3> | |
| <p class="text-amber-200">Gourmet dinners delivered to your home since 2015.</p> | |
| </div> | |
| <div> | |
| <h4 class="font-bold mb-4">Delivery Areas</h4> | |
| <p class="mb-1">Metro Area</p> | |
| <p class="mb-1">Suburban Zones</p> | |
| <p>Select Rural Locations</p> | |
| </div> | |
| <div> | |
| <h4 class="font-bold mb-4">Contact</h4> | |
| <p class="mb-1">456 Gourmet Avenue</p> | |
| <p class="mb-1">Flavorville, CA 90211</p> | |
| <p class="mb-1">(555) 987-6543</p> | |
| <p>hello@auntienans.com</p> | |
| </div> | |
| <div> | |
| <h4 class="font-bold mb-4">Follow Us</h4> | |
| <div class="flex space-x-4"> | |
| <a href="#" class="hover:text-accent"><i data-feather="instagram"></i></a> | |
| <a href="#" class="hover:text-accent"><i data-feather="facebook"></i></a> | |
| <a href="#" class="hover:text-accent"><i data-feather="twitter"></i></a> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="border-t border-amber-700 mt-8 pt-8 text-center text-amber-200"> | |
| <p>© 2023 Auntie Nan's Kitchen. All rights reserved.</p> | |
| </div> | |
| </div> | |
| </footer> | |
| <script> | |
| AOS.init({ | |
| duration: 800, | |
| easing: 'ease-in-out', | |
| once: true | |
| }); | |
| feather.replace(); | |
| </script> | |
| </body> | |
| </html> |