Spaces:
Running
Running
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>Lakay Restaurant | Authentic Haitian Cuisine</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&family=Playfair+Display:wght@400;700&display=swap'); | |
| body { | |
| font-family: 'Poppins', sans-serif; | |
| background-color: #f8f5f2; | |
| } | |
| .hero { | |
| background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1601050690597-df0568f70950?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80'); | |
| background-size: cover; | |
| background-position: center; | |
| } | |
| .menu-item:hover .menu-overlay { | |
| opacity: 1; | |
| transform: translateY(0); | |
| } | |
| .menu-overlay { | |
| transition: all 0.3s ease; | |
| opacity: 0; | |
| transform: translateY(20px); | |
| } | |
| .dish-card:hover { | |
| transform: translateY(-10px); | |
| box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15); | |
| } | |
| .dish-card { | |
| transition: all 0.3s ease; | |
| } | |
| .flag-stripe { | |
| height: 10px; | |
| } | |
| .flag-blue { | |
| background-color: #00209f; | |
| } | |
| .flag-red { | |
| background-color: #da1a32; | |
| } | |
| .scroll-smooth { | |
| scroll-behavior: smooth; | |
| } | |
| .testimonial-card { | |
| background: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.8) 100%); | |
| backdrop-filter: blur(10px); | |
| } | |
| .nav-link:hover { | |
| color: #da1a32; | |
| } | |
| .active { | |
| color: #da1a32; | |
| font-weight: 600; | |
| } | |
| </style> | |
| </head> | |
| <body class="scroll-smooth"> | |
| <!-- Navigation --> | |
| <nav class="bg-white shadow-md fixed w-full z-50"> | |
| <div class="container mx-auto px-6 py-3"> | |
| <div class="flex justify-between items-center"> | |
| <div class="flex items-center"> | |
| <div class="mr-4"> | |
| <div class="flex"> | |
| <div class="flag-stripe flag-blue w-6"></div> | |
| <div class="flag-stripe flag-red w-6"></div> | |
| </div> | |
| </div> | |
| <a href="#" class="text-2xl font-bold text-gray-800 font-['Playfair Display']">Lakay</a> | |
| </div> | |
| <div class="hidden md:flex space-x-8"> | |
| <a href="#home" class="nav-link py-2 px-3 active">Home</a> | |
| <a href="#menu" class="nav-link py-2 px-3">Menu</a> | |
| <a href="#about" class="nav-link py-2 px-3">About</a> | |
| <a href="#gallery" class="nav-link py-2 px-3">Gallery</a> | |
| <a href="#contact" class="nav-link py-2 px-3">Contact</a> | |
| </div> | |
| <div class="flex items-center space-x-4"> | |
| <a href="#reservation" class="hidden md:block bg-red-600 hover:bg-red-700 text-white px-4 py-2 rounded-full transition duration-300">Reservations</a> | |
| <button class="md:hidden focus:outline-none" id="mobile-menu-button"> | |
| <svg class="w-6 h-6" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"> | |
| <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 6h16M4 12h16M4 18h16"></path> | |
| </svg> | |
| </button> | |
| </div> | |
| </div> | |
| </div> | |
| <!-- Mobile menu --> | |
| <div class="md:hidden hidden bg-white w-full px-6 py-3 shadow-lg" id="mobile-menu"> | |
| <div class="flex flex-col space-y-3"> | |
| <a href="#home" class="nav-link py-2 active">Home</a> | |
| <a href="#menu" class="nav-link py-2">Menu</a> | |
| <a href="#about" class="nav-link py-2">About</a> | |
| <a href="#gallery" class="nav-link py-2">Gallery</a> | |
| <a href="#contact" class="nav-link py-2">Contact</a> | |
| <a href="#reservation" class="bg-red-600 hover:bg-red-700 text-white px-4 py-2 rounded-full text-center transition duration-300">Reservations</a> | |
| </div> | |
| </div> | |
| </nav> | |
| <!-- Hero Section --> | |
| <section id="home" class="hero min-h-screen flex items-center justify-center text-white pt-20"> | |
| <div class="container mx-auto px-6 text-center"> | |
| <h1 class="text-4xl md:text-6xl font-bold mb-6 font-['Playfair Display']">Authentic Haitian Cuisine</h1> | |
| <p class="text-xl md:text-2xl mb-8 max-w-2xl mx-auto">Experience the vibrant flavors of Haiti in every bite</p> | |
| <div class="flex flex-col md:flex-row justify-center space-y-4 md:space-y-0 md:space-x-4"> | |
| <a href="#menu" class="bg-red-600 hover:bg-red-700 text-white px-8 py-3 rounded-full text-lg font-semibold transition duration-300">View Menu</a> | |
| <a href="#reservation" class="bg-transparent hover:bg-white hover:text-gray-900 border-2 border-white text-white px-8 py-3 rounded-full text-lg font-semibold transition duration-300">Book a Table</a> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- About Section --> | |
| <section id="about" class="py-20 bg-white"> | |
| <div class="container mx-auto px-6"> | |
| <div class="flex flex-col md:flex-row items-center"> | |
| <div class="md:w-1/2 mb-10 md:mb-0 md:pr-10"> | |
| <img src="https://images.unsplash.com/photo-1601050690597-df0568f70950?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Haitian Food" class="rounded-lg shadow-xl w-full"> | |
| </div> | |
| <div class="md:w-1/2"> | |
| <h2 class="text-3xl md:text-4xl font-bold mb-6 font-['Playfair Display']">Our Story</h2> | |
| <p class="text-gray-700 mb-6">Lakay Restaurant was founded in 2010 with a mission to bring the authentic flavors of Haiti to the world. "Lakay" means "home" in Haitian Creole, and that's exactly what we want our restaurant to feel like - a home away from home.</p> | |
| <p class="text-gray-700 mb-6">Our chefs use traditional recipes passed down through generations, combined with the freshest local ingredients to create dishes that are both comforting and exciting.</p> | |
| <div class="flex items-center"> | |
| <div class="mr-4"> | |
| <div class="flex"> | |
| <div class="flag-stripe flag-blue w-6"></div> | |
| <div class="flag-stripe flag-red w-6"></div> | |
| </div> | |
| </div> | |
| <p class="text-gray-700 italic">"Nou se yon fanmi" - We are family</p> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Menu Section --> | |
| <section id="menu" class="py-20 bg-gray-100"> | |
| <div class="container mx-auto px-6"> | |
| <div class="text-center mb-16"> | |
| <h2 class="text-3xl md:text-4xl font-bold mb-4 font-['Playfair Display']">Our Menu</h2> | |
| <div class="w-24 h-1 bg-red-600 mx-auto mb-6"></div> | |
| <p class="text-gray-700 max-w-2xl mx-auto">Discover the rich flavors of Haiti with our carefully crafted menu featuring traditional dishes with a modern touch.</p> | |
| </div> | |
| <div class="flex justify-center mb-10"> | |
| <div class="inline-flex rounded-md shadow-sm"> | |
| <button onclick="filterMenu('all')" class="px-6 py-2 text-sm font-medium rounded-l-lg bg-red-600 text-white">All</button> | |
| <button onclick="filterMenu('starters')" class="px-6 py-2 text-sm font-medium bg-white text-gray-700 hover:bg-gray-50">Starters</button> | |
| <button onclick="filterMenu('mains')" class="px-6 py-2 text-sm font-medium bg-white text-gray-700 hover:bg-gray-50">Main Dishes</button> | |
| <button onclick="filterMenu('desserts')" class="px-6 py-2 text-sm font-medium rounded-r-lg bg-white text-gray-700 hover:bg-gray-50">Desserts</button> | |
| </div> | |
| </div> | |
| <div class="grid md:grid-cols-2 lg:grid-cols-3 gap-8" id="menu-items"> | |
| <!-- Menu items will be loaded here by JavaScript --> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Special Dish --> | |
| <section class="py-20 bg-white"> | |
| <div class="container mx-auto px-6"> | |
| <div class="flex flex-col md:flex-row items-center"> | |
| <div class="md:w-1/2 mb-10 md:mb-0 md:pr-10"> | |
| <h2 class="text-3xl md:text-4xl font-bold mb-6 font-['Playfair Display']">Today's Special</h2> | |
| <h3 class="text-2xl font-semibold mb-4 text-red-600">Griot with Pikliz</h3> | |
| <p class="text-gray-700 mb-6">Our signature dish features crispy fried pork marinated in sour orange juice and spices, served with spicy pickled vegetables (pikliz) and fried plantains.</p> | |
| <div class="flex items-center mb-6"> | |
| <div class="text-yellow-400 mr-2"> | |
| <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> | |
| <span class="text-gray-600">4.9 (128 reviews)</span> | |
| </div> | |
| <div class="flex items-center"> | |
| <span class="text-2xl font-bold text-gray-900 mr-4">$18.99</span> | |
| <button class="bg-red-600 hover:bg-red-700 text-white px-6 py-2 rounded-full transition duration-300">Order Now</button> | |
| </div> | |
| </div> | |
| <div class="md:w-1/2 relative"> | |
| <img src="https://images.unsplash.com/photo-1563805042-7684c019e1cb?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1527&q=80" alt="Griot with Pikliz" class="rounded-lg shadow-xl w-full"> | |
| <div class="absolute -bottom-5 -right-5 bg-white p-4 rounded-lg shadow-lg"> | |
| <div class="flex items-center"> | |
| <div class="bg-red-100 p-3 rounded-full mr-3"> | |
| <i class="fas fa-fire text-red-600"></i> | |
| </div> | |
| <div> | |
| <p class="font-semibold">Spicy Level</p> | |
| <p class="text-gray-600 text-sm">Medium-Hot</p> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Gallery Section --> | |
| <section id="gallery" class="py-20 bg-gray-100"> | |
| <div class="container mx-auto px-6"> | |
| <div class="text-center mb-16"> | |
| <h2 class="text-3xl md:text-4xl font-bold mb-4 font-['Playfair Display']">Food Gallery</h2> | |
| <div class="w-24 h-1 bg-red-600 mx-auto mb-6"></div> | |
| <p class="text-gray-700 max-w-2xl mx-auto">A visual journey through our most popular dishes and the vibrant flavors of Haiti.</p> | |
| </div> | |
| <div class="grid grid-cols-2 md:grid-cols-3 lg:grid-cols-4 gap-4"> | |
| <div class="relative overflow-hidden rounded-lg h-48"> | |
| <img src="https://images.unsplash.com/photo-1563805042-7684c019e1cb?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1527&q=80" alt="Haitian Food" class="w-full h-full object-cover"> | |
| <div class="absolute inset-0 bg-black bg-opacity-40 flex items-center justify-center opacity-0 hover:opacity-100 transition duration-300"> | |
| <i class="fas fa-search-plus text-white text-2xl"></i> | |
| </div> | |
| </div> | |
| <div class="relative overflow-hidden rounded-lg h-48"> | |
| <img src="https://images.unsplash.com/photo-1601050690597-df0568f70950?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Haitian Food" class="w-full h-full object-cover"> | |
| <div class="absolute inset-0 bg-black bg-opacity-40 flex items-center justify-center opacity-0 hover:opacity-100 transition duration-300"> | |
| <i class="fas fa-search-plus text-white text-2xl"></i> | |
| </div> | |
| </div> | |
| <div class="relative overflow-hidden rounded-lg h-48"> | |
| <img src="https://images.unsplash.com/photo-1563805042-7684c019e1cb?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1527&q=80" alt="Haitian Food" class="w-full h-full object-cover"> | |
| <div class="absolute inset-0 bg-black bg-opacity-40 flex items-center justify-center opacity-0 hover:opacity-100 transition duration-300"> | |
| <i class="fas fa-search-plus text-white text-2xl"></i> | |
| </div> | |
| </div> | |
| <div class="relative overflow-hidden rounded-lg h-48"> | |
| <img src="https://images.unsplash.com/photo-1601050690597-df0568f70950?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Haitian Food" class="w-full h-full object-cover"> | |
| <div class="absolute inset-0 bg-black bg-opacity-40 flex items-center justify-center opacity-0 hover:opacity-100 transition duration-300"> | |
| <i class="fas fa-search-plus text-white text-2xl"></i> | |
| </div> | |
| </div> | |
| <div class="relative overflow-hidden rounded-lg h-48"> | |
| <img src="https://images.unsplash.com/photo-1563805042-7684c019e1cb?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1527&q=80" alt="Haitian Food" class="w-full h-full object-cover"> | |
| <div class="absolute inset-0 bg-black bg-opacity-40 flex items-center justify-center opacity-0 hover:opacity-100 transition duration-300"> | |
| <i class="fas fa-search-plus text-white text-2xl"></i> | |
| </div> | |
| </div> | |
| <div class="relative overflow-hidden rounded-lg h-48"> | |
| <img src="https://images.unsplash.com/photo-1601050690597-df0568f70950?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Haitian Food" class="w-full h-full object-cover"> | |
| <div class="absolute inset-0 bg-black bg-opacity-40 flex items-center justify-center opacity-0 hover:opacity-100 transition duration-300"> | |
| <i class="fas fa-search-plus text-white text-2xl"></i> | |
| </div> | |
| </div> | |
| <div class="relative overflow-hidden rounded-lg h-48"> | |
| <img src="https://images.unsplash.com/photo-1563805042-7684c019e1cb?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1527&q=80" alt="Haitian Food" class="w-full h-full object-cover"> | |
| <div class="absolute inset-0 bg-black bg-opacity-40 flex items-center justify-center opacity-0 hover:opacity-100 transition duration-300"> | |
| <i class="fas fa-search-plus text-white text-2xl"></i> | |
| </div> | |
| </div> | |
| <div class="relative overflow-hidden rounded-lg h-48"> | |
| <img src="https://images.unsplash.com/photo-1601050690597-df0568f70950?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Haitian Food" class="w-full h-full object-cover"> | |
| <div class="absolute inset-0 bg-black bg-opacity-40 flex items-center justify-center opacity-0 hover:opacity-100 transition duration-300"> | |
| <i class="fas fa-search-plus text-white text-2xl"></i> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Testimonials --> | |
| <section class="py-20 bg-white"> | |
| <div class="container mx-auto px-6"> | |
| <div class="text-center mb-16"> | |
| <h2 class="text-3xl md:text-4xl font-bold mb-4 font-['Playfair Display']">What Our Guests Say</h2> | |
| <div class="w-24 h-1 bg-red-600 mx-auto mb-6"></div> | |
| <p class="text-gray-700 max-w-2xl mx-auto">Hear from our satisfied customers about their dining experience at Lakay.</p> | |
| </div> | |
| <div class="grid md:grid-cols-2 lg:grid-cols-3 gap-8"> | |
| <div class="testimonial-card p-8 rounded-lg shadow-lg"> | |
| <div class="flex items-center mb-4"> | |
| <img src="https://randomuser.me/api/portraits/women/32.jpg" alt="Customer" class="w-12 h-12 rounded-full mr-4"> | |
| <div> | |
| <h4 class="font-semibold">Marie Joseph</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-700 italic">"The griot was just like my grandmother used to make! The flavors took me right back to my childhood in Port-au-Prince. The service was excellent too."</p> | |
| </div> | |
| <div class="testimonial-card p-8 rounded-lg shadow-lg"> | |
| <div class="flex items-center mb-4"> | |
| <img src="https://randomuser.me/api/portraits/men/54.jpg" alt="Customer" class="w-12 h-12 rounded-full mr-4"> | |
| <div> | |
| <h4 class="font-semibold">Jean Pierre</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-700 italic">"As a Haitian living abroad, finding authentic Haitian food is rare. Lakay exceeded my expectations with their perfectly seasoned diri kole ak pwa."</p> | |
| </div> | |
| <div class="testimonial-card p-8 rounded-lg shadow-lg"> | |
| <div class="flex items-center mb-4"> | |
| <img src="https://randomuser.me/api/portraits/women/68.jpg" alt="Customer" class="w-12 h-12 rounded-full mr-4"> | |
| <div> | |
| <h4 class="font-semibold">Sarah Johnson</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-700 italic">"I had never tried Haitian food before coming to Lakay. Now I'm hooked! The accra was crispy perfection, and the pikliz had just the right amount of heat."</p> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Reservation Section --> | |
| <section id="reservation" class="py-20 bg-gray-100"> | |
| <div class="container mx-auto px-6"> | |
| <div class="max-w-4xl mx-auto bg-white rounded-lg shadow-xl overflow-hidden"> | |
| <div class="md:flex"> | |
| <div class="md:w-1/2 bg-red-600 text-white p-10"> | |
| <h2 class="text-3xl font-bold mb-6 font-['Playfair Display']">Make a Reservation</h2> | |
| <p class="mb-6">Book your table at Lakay and experience authentic Haitian cuisine in a warm, welcoming atmosphere.</p> | |
| <div class="mb-6"> | |
| <h3 class="font-semibold text-xl mb-2">Opening Hours</h3> | |
| <p>Monday - Friday: 11am - 10pm</p> | |
| <p>Saturday - Sunday: 10am - 11pm</p> | |
| </div> | |
| <div> | |
| <h3 class="font-semibold text-xl mb-2">Contact</h3> | |
| <p class="mb-1"><i class="fas fa-phone mr-2"></i> (555) 123-4567</p> | |
| <p><i class="fas fa-envelope mr-2"></i> info@lakayrestaurant.com</p> | |
| </div> | |
| </div> | |
| <div class="md:w-1/2 p-10"> | |
| <form id="reservation-form"> | |
| <div class="mb-4"> | |
| <label for="name" class="block text-gray-700 mb-2">Full Name</label> | |
| <input type="text" id="name" class="w-full px-4 py-2 border rounded-lg focus:outline-none focus:ring-2 focus:ring-red-600"> | |
| </div> | |
| <div class="mb-4"> | |
| <label for="email" class="block text-gray-700 mb-2">Email</label> | |
| <input type="email" id="email" class="w-full px-4 py-2 border rounded-lg focus:outline-none focus:ring-2 focus:ring-red-600"> | |
| </div> | |
| <div class="mb-4"> | |
| <label for="phone" class="block text-gray-700 mb-2">Phone Number</label> | |
| <input type="tel" id="phone" class="w-full px-4 py-2 border rounded-lg focus:outline-none focus:ring-2 focus:ring-red-600"> | |
| </div> | |
| <div class="grid grid-cols-2 gap-4 mb-4"> | |
| <div> | |
| <label for="date" class="block text-gray-700 mb-2">Date</label> | |
| <input type="date" id="date" class="w-full px-4 py-2 border rounded-lg focus:outline-none focus:ring-2 focus:ring-red-600"> | |
| </div> | |
| <div> | |
| <label for="time" class="block text-gray-700 mb-2">Time</label> | |
| <input type="time" id="time" class="w-full px-4 py-2 border rounded-lg focus:outline-none focus:ring-2 focus:ring-red-600"> | |
| </div> | |
| </div> | |
| <div class="mb-4"> | |
| <label for="guests" class="block text-gray-700 mb-2">Number of Guests</label> | |
| <select id="guests" class="w-full px-4 py-2 border rounded-lg focus:outline-none focus:ring-2 focus:ring-red-600"> | |
| <option value="1">1 Person</option> | |
| <option value="2">2 People</option> | |
| <option value="3">3 People</option> | |
| <option value="4">4 People</option> | |
| <option value="5">5 People</option> | |
| <option value="6">6+ People</option> | |
| </select> | |
| </div> | |
| <button type="submit" class="w-full bg-red-600 hover:bg-red-700 text-white px-6 py-3 rounded-lg font-semibold transition duration-300">Book Table</button> | |
| </form> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Contact Section --> | |
| <section id="contact" class="py-20 bg-white"> | |
| <div class="container mx-auto px-6"> | |
| <div class="text-center mb-16"> | |
| <h2 class="text-3xl md:text-4xl font-bold mb-4 font-['Playfair Display']">Contact Us</h2> | |
| <div class="w-24 h-1 bg-red-600 mx-auto mb-6"></div> | |
| <p class="text-gray-700 max-w-2xl mx-auto">Have questions or feedback? We'd love to hear from you!</p> | |
| </div> | |
| <div class="grid md:grid-cols-2 gap-12"> | |
| <div> | |
| <h3 class="text-2xl font-semibold mb-6">Get In Touch</h3> | |
| <div class="space-y-6"> | |
| <div class="flex items-start"> | |
| <div class="bg-red-100 p-3 rounded-full mr-4"> | |
| <i class="fas fa-map-marker-alt text-red-600"></i> | |
| </div> | |
| <div> | |
| <h4 class="font-semibold">Address</h4> | |
| <p class="text-gray-700">123 Caribbean Avenue, Miami, FL 33132</p> | |
| </div> | |
| </div> | |
| <div class="flex items-start"> | |
| <div class="bg-red-100 p-3 rounded-full mr-4"> | |
| <i class="fas fa-phone text-red-600"></i> | |
| </div> | |
| <div> | |
| <h4 class="font-semibold">Phone</h4> | |
| <p class="text-gray-700">(555) 123-4567</p> | |
| </div> | |
| </div> | |
| <div class="flex items-start"> | |
| <div class="bg-red-100 p-3 rounded-full mr-4"> | |
| <i class="fas fa-envelope text-red-600"></i> | |
| </div> | |
| <div> | |
| <h4 class="font-semibold">Email</h4> | |
| <p class="text-gray-700">info@lakayrestaurant.com</p> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="mt-10"> | |
| <h3 class="text-2xl font-semibold mb-6">Follow Us</h3> | |
| <div class="flex space-x-4"> | |
| <a href="#" class="bg-gray-100 hover:bg-red-600 hover:text-white p-3 rounded-full transition duration-300"> | |
| <i class="fab fa-facebook-f"></i> | |
| </a> | |
| <a href="#" class="bg-gray-100 hover:bg-red-600 hover:text-white p-3 rounded-full transition duration-300"> | |
| <i class="fab fa-instagram"></i> | |
| </a> | |
| <a href="#" class="bg-gray-100 hover:bg-red-600 hover:text-white p-3 rounded-full transition duration-300"> | |
| <i class="fab fa-twitter"></i> | |
| </a> | |
| <a href="#" class="bg-gray-100 hover:bg-red-600 hover:text-white p-3 rounded-full transition duration-300"> | |
| <i class="fab fa-yelp"></i> | |
| </a> | |
| </div> | |
| </div> | |
| </div> | |
| <div> | |
| <h3 class="text-2xl font-semibold mb-6">Send Us a Message</h3> | |
| <form id="contact-form"> | |
| <div class="mb-4"> | |
| <label for="contact-name" class="block text-gray-700 mb-2">Name</label> | |
| <input type="text" id="contact-name" class="w-full px-4 py-2 border rounded-lg focus:outline-none focus:ring-2 focus:ring-red-600"> | |
| </div> | |
| <div class="mb-4"> | |
| <label for="contact-email" class="block text-gray-700 mb-2">Email</label> | |
| <input type="email" id="contact-email" class="w-full px-4 py-2 border rounded-lg focus:outline-none focus:ring-2 focus:ring-red-600"> | |
| </div> | |
| <div class="mb-4"> | |
| <label for="contact-subject" class="block text-gray-700 mb-2">Subject</label> | |
| <input type="text" id="contact-subject" class="w-full px-4 py-2 border rounded-lg focus:outline-none focus:ring-2 focus:ring-red-600"> | |
| </div> | |
| <div class="mb-4"> | |
| <label for="contact-message" class="block text-gray-700 mb-2">Message</label> | |
| <textarea id="contact-message" rows="5" class="w-full px-4 py-2 border rounded-lg focus:outline-none focus:ring-2 focus:ring-red-600"></textarea> | |
| </div> | |
| <button type="submit" class="w-full bg-red-600 hover:bg-red-700 text-white px-6 py-3 rounded-lg font-semibold transition duration-300">Send Message</button> | |
| </form> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Map --> | |
| <div class="h-96 w-full"> | |
| <iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3593.210321477493!2d-80.1913079849791!3d25.76161598363595!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x88d9b6823bcf83f7%3A0xef0b288e10bb269c!2sMiami%2C%20FL%2C%20USA!5e0!3m2!1sen!2s!4v1629996547899!5m2!1sen!2s" width="100%" height="100%" style="border:0;" allowfullscreen="" loading="lazy"></iframe> | |
| </div> | |
| <!-- Footer --> | |
| <footer class="bg-gray-900 text-white py-12"> | |
| <div class="container mx-auto px-6"> | |
| <div class="grid md:grid-cols-4 gap-8"> | |
| <div> | |
| <div class="flex items-center mb-4"> | |
| <div class="mr-3"> | |
| <div class="flex"> | |
| <div class="flag-stripe flag-blue w-5"></div> | |
| <div class="flag-stripe flag-red w-5"></div> | |
| </div> | |
| </div> | |
| <h3 class="text-xl font-bold font-['Playfair Display']">Lakay</h3> | |
| </div> | |
| <p class="text-gray-400">Bringing the authentic flavors of Haiti to your table since 2010.</p> | |
| </div> | |
| <div> | |
| <h4 class="text-lg font-semibold mb-4">Quick Links</h4> | |
| <ul class="space-y-2"> | |
| <li><a href="#home" class="text-gray-400 hover:text-white transition duration-300">Home</a></li> | |
| <li><a href="#menu" class="text-gray-400 hover:text-white transition duration-300">Menu</a></li> | |
| <li><a href="#about" class="text-gray-400 hover:text-white transition duration-300">About Us</a></li> | |
| <li><a href="#gallery" class="text-gray-400 hover:text-white transition duration-300">Gallery</a></li> | |
| <li><a href="#contact" class="text-gray-400 hover:text-white transition duration-300">Contact</a></li> | |
| </ul> | |
| </div> | |
| <div> | |
| <h4 class="text-lg font-semibold mb-4">Opening Hours</h4> | |
| <ul class="space-y-2 text-gray-400"> | |
| <li class="flex justify-between"> | |
| <span>Monday - Friday</span> | |
| <span>11am - 10pm</span> | |
| </li> | |
| <li class="flex justify-between"> | |
| <span>Saturday</span> | |
| <span>10am - 11pm</span> | |
| </li> | |
| <li class="flex justify-between"> | |
| <span>Sunday</span> | |
| <span>10am - 11pm</span> | |
| </li> | |
| </ul> | |
| </div> | |
| <div> | |
| <h4 class="text-lg font-semibold mb-4">Newsletter</h4> | |
| <p class="text-gray-400 mb-4">Subscribe to our newsletter for updates and special offers.</p> | |
| <form class="flex"> | |
| <input type="email" placeholder="Your email" class="px-4 py-2 rounded-l-lg focus:outline-none text-gray-900 w-full"> | |
| <button type="submit" class="bg-red-600 hover:bg-red-700 px-4 py-2 rounded-r-lg transition duration-300"> | |
| <i class="fas fa-paper-plane"></i> | |
| </button> | |
| </form> | |
| </div> | |
| </div> | |
| <div class="border-t border-gray-800 mt-12 pt-8 flex flex-col md:flex-row justify-between items-center"> | |
| <p class="text-gray-400 mb-4 md:mb-0">© 2023 Lakay Restaurant. All rights reserved.</p> | |
| <div class="flex space-x-6"> | |
| <a href="#" class="text-gray-400 hover:text-white transition duration-300"> | |
| <i class="fab fa-facebook-f"></i> | |
| </a> | |
| <a href="#" class="text-gray-400 hover:text-white transition duration-300"> | |
| <i class="fab fa-instagram"></i> | |
| </a> | |
| <a href="#" class="text-gray-400 hover:text-white transition duration-300"> | |
| <i class="fab fa-twitter"></i> | |
| </a> | |
| <a href="#" class="text-gray-400 hover:text-white transition duration-300"> | |
| <i class="fab fa-yelp"></i> | |
| </a> | |
| </div> | |
| </div> | |
| </div> | |
| </footer> | |
| <script> | |
| // Mobile menu toggle | |
| const mobileMenuButton = document.getElementById('mobile-menu-button'); | |
| const mobileMenu = document.getElementById('mobile-menu'); | |
| mobileMenuButton.addEventListener('click', () => { | |
| mobileMenu.classList.toggle('hidden'); | |
| }); | |
| // Smooth scrolling for navigation links | |
| document.querySelectorAll('a[href^="#"]').forEach(anchor => { | |
| anchor.addEventListener('click', function (e) { | |
| e.preventDefault(); | |
| document.querySelector(this.getAttribute('href')).scrollIntoView({ | |
| behavior: 'smooth' | |
| }); | |
| // Close mobile menu if open | |
| mobileMenu.classList.add('hidden'); | |
| // Update active link | |
| document.querySelectorAll('.nav-link').forEach(link => { | |
| link.classList.remove('active'); | |
| }); | |
| this.classList.add('active'); | |
| }); | |
| }); | |
| // Highlight active section in navigation | |
| window.addEventListener('scroll', () => { | |
| const sections = document.querySelectorAll('section'); | |
| const navLinks = document.querySelectorAll('.nav-link'); | |
| let current = ''; | |
| sections.forEach(section => { | |
| const sectionTop = section.offsetTop; | |
| const sectionHeight = section.clientHeight; | |
| if (pageYOffset >= sectionTop - 300) { | |
| current = section.getAttribute('id'); | |
| } | |
| }); | |
| navLinks.forEach(link => { | |
| link.classList.remove('active'); | |
| if (link.getAttribute('href') === `#${current}`) { | |
| link.classList.add('active'); | |
| } | |
| }); | |
| }); | |
| // Menu items data | |
| const menuItems = [ | |
| { | |
| id: 1, | |
| name: "Accra", | |
| description: "Traditional Haitian malanga fritters, crispy on the outside and soft inside.", | |
| price: "$8.99", | |
| category: "starters", | |
| spicy: false | |
| }, | |
| { | |
| id: 2, | |
| name: "Soup Joumou", | |
| description: "Haitian pumpkin soup with beef, vegetables, and pasta, traditionally served on Independence Day.", | |
| price: "$12.99", | |
| category: "starters", | |
| spicy: false | |
| }, | |
| { | |
| id: 3, | |
| name: "Pikliz", | |
| description: "Spicy pickled cabbage and vegetable relish, the perfect accompaniment to many Haitian dishes.", | |
| price: "$4.99", | |
| category: "starters", | |
| spicy: true | |
| }, | |
| { | |
| id: 4, | |
| name: "Griot", | |
| description: "Crispy fried pork marinated in sour orange juice and spices, served with pikliz and fried plantains.", | |
| price: "$18.99", | |
| category: "mains", | |
| spicy: true | |
| }, | |
| { | |
| id: 5, | |
| name: "Diri kole ak pwa", | |
| description: "Haitian rice and beans cooked together with spices and coconut milk, a staple dish.", | |
| price: "$14.99", | |
| category: "mains", | |
| spicy: false | |
| }, | |
| { | |
| id: 6, | |
| name: "Tasso", | |
| description: "Spicy fried goat meat, marinated in a blend of Haitian spices and citrus.", | |
| price: "$19.99", | |
| category: "mains", | |
| spicy: true | |
| }, | |
| { | |
| id: 7, | |
| name: "Poulet en sauce", | |
| description: "Chicken stewed in a rich, flavorful sauce with mushrooms and peppers.", | |
| price: "$16.99", | |
| category: "mains", | |
| spicy: false | |
| }, | |
| { | |
| id: 8, | |
| name: "Lambi", | |
| description: "Tender conch meat sautéed with onions, peppers, and spices in a rich sauce.", | |
| price: "$22.99", | |
| category: "mains", | |
| spicy: true | |
| }, | |
| { | |
| id: 9, | |
| name: "Pen patat", | |
| description: "Traditional Haitian sweet potato pudding with spices and coconut milk.", | |
| price: "$7.99", | |
| category: "desserts", | |
| spicy: false | |
| }, | |
| { | |
| id: 10, | |
| name: "Dous makos", | |
| description: "Haitian fudge with distinct layers of flavor, a beloved sweet treat.", | |
| price: "$6.99", | |
| category: "desserts", | |
| spicy: false | |
| }, | |
| { | |
| id: 11, | |
| name: "Tablet pistach", | |
| description: "Crunchy peanut brittle made with Haitian peanuts and caramelized sugar.", | |
| price: "$5.99", | |
| category: "desserts", | |
| spicy: false | |
| }, | |
| { | |
| id: 12, | |
| name: "Fresco", | |
| description: "Haitian shaved ice with sweet syrup flavors, a refreshing dessert.", | |
| price: "$4.99", | |
| category: "desserts", | |
| spicy: false | |
| } | |
| ]; | |
| // Load menu items | |
| function loadMenuItems(items) { | |
| const menuContainer = document.getElementById('menu-items'); | |
| menuContainer.innerHTML = ''; | |
| items.forEach(item => { | |
| const menuItem = document.createElement('div'); | |
| menuItem.className = 'bg-white rounded-lg shadow-md overflow-hidden dish-card'; | |
| menuItem.innerHTML = ` | |
| <div class="relative h-48 overflow-hidden"> | |
| <img src="https://images.unsplash.com/photo-1563805042-7684c019e1cb?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1527&q=80" alt="${item.name}" class="w-full h-full object-cover"> | |
| <div class="absolute inset-0 bg-black bg-opacity-40 flex items-center justify-center menu-overlay"> | |
| <span class="text-white text-lg font-semibold">${item.price}</span> | |
| </div> | |
| ${item.spicy ? '<div class="absolute top-2 right-2 bg-red-600 text-white px-2 py-1 rounded-full text-xs font-semibold">Spicy</div>' : ''} | |
| </div> | |
| <div class="p-6"> | |
| <h3 class="text-xl font-semibold mb-2">${item.name}</h3> | |
| <p class="text-gray-600">${item.description}</p> | |
| <div class="mt-4 flex justify-between items-center"> | |
| <span class="text-red-600 font-semibold">${item.price}</span> | |
| <button class="bg-red-600 hover:bg-red-700 text-white px-4 py-2 rounded-full text-sm transition duration-300">Add to Order</button> | |
| </div> | |
| </div> | |
| `; | |
| menuContainer.appendChild(menuItem); | |
| }); | |
| } | |
| // Filter menu by category | |
| function filterMenu(category) { | |
| if (category === 'all') { | |
| loadMenuItems(menuItems); | |
| } else { | |
| const filteredItems = menuItems.filter(item => item.category === category); | |
| loadMenuItems(filteredItems); | |
| } | |
| } | |
| // Initialize menu | |
| document.addEventListener('DOMContentLoaded', () => { | |
| loadMenuItems(menuItems); | |
| // Form submissions | |
| document.getElementById('reservation-form').addEventListener('submit', function(e) { | |
| e.preventDefault(); | |
| alert('Thank you for your reservation! We will contact you shortly to confirm.'); | |
| this.reset(); | |
| }); | |
| document.getElementById('contact-form').addEventListener('submit', function(e) { | |
| e.preventDefault(); | |
| alert('Thank you for your message! We will get back to you soon.'); | |
| this.reset(); | |
| }); | |
| }); | |
| </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=faysalsadik/test" style="color: #fff;text-decoration: underline;" target="_blank" >🧬 Remix</a></p></body> | |
| </html> |