Spaces:
Running
Running
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>ForbSpace Cafe - A Cozy Space for Coffee Lovers</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; | |
scroll-behavior: smooth; | |
} | |
.hero { | |
background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1445116572660-236099ec97a0?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2071&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); | |
} | |
.testimonial-card { | |
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); | |
transition: transform 0.3s ease; | |
} | |
.testimonial-card:hover { | |
transform: translateY(-10px); | |
} | |
.floating-btn { | |
animation: float 3s ease-in-out infinite; | |
} | |
@keyframes float { | |
0% { transform: translateY(0px); } | |
50% { transform: translateY(-15px); } | |
100% { transform: translateY(0px); } | |
} | |
</style> | |
</head> | |
<body class="bg-gray-50"> | |
<!-- Navigation --> | |
<nav class="fixed w-full bg-white shadow-md 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"> | |
<span class="text-2xl font-bold text-amber-800">ForbSpace Cafe</span> | |
</div> | |
<div class="hidden md:block"> | |
<div class="ml-10 flex items-center space-x-8"> | |
<a href="#home" class="text-gray-900 hover:text-amber-700 px-3 py-2 text-sm font-medium">Home</a> | |
<a href="#about" class="text-gray-900 hover:text-amber-700 px-3 py-2 text-sm font-medium">About</a> | |
<a href="#menu" class="text-gray-900 hover:text-amber-700 px-3 py-2 text-sm font-medium">Menu</a> | |
<a href="#gallery" class="text-gray-900 hover:text-amber-700 px-3 py-2 text-sm font-medium">Gallery</a> | |
<a href="#contact" class="text-gray-900 hover:text-amber-700 px-3 py-2 text-sm font-medium">Contact</a> | |
<a href="#reservation" class="bg-amber-700 text-white px-4 py-2 rounded-md hover:bg-amber-800 transition duration-300">Reserve a Table</a> | |
</div> | |
</div> | |
<div class="md:hidden"> | |
<button id="mobile-menu-button" class="text-gray-900 hover:text-amber-700 focus:outline-none"> | |
<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-gray-900 hover:text-amber-700">Home</a> | |
<a href="#about" class="block px-3 py-2 text-base font-medium text-gray-900 hover:text-amber-700">About</a> | |
<a href="#menu" class="block px-3 py-2 text-base font-medium text-gray-900 hover:text-amber-700">Menu</a> | |
<a href="#gallery" class="block px-3 py-2 text-base font-medium text-gray-900 hover:text-amber-700">Gallery</a> | |
<a href="#contact" class="block px-3 py-2 text-base font-medium text-gray-900 hover:text-amber-700">Contact</a> | |
<a href="#reservation" class="block px-3 py-2 text-base font-medium bg-amber-700 text-white rounded-md text-center">Reserve a Table</a> | |
</div> | |
</div> | |
</nav> | |
<!-- Hero Section --> | |
<section id="home" class="hero pt-32 pb-20 md:pt-40 md:pb-32 text-white"> | |
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 text-center"> | |
<h1 class="text-4xl md:text-6xl font-bold mb-6">Welcome to ForbSpace Cafe</h1> | |
<p class="text-xl md:text-2xl mb-10 max-w-3xl mx-auto">Where every cup tells a story and every bite creates a memory</p> | |
<div class="flex flex-col sm:flex-row justify-center gap-4"> | |
<a href="#menu" class="bg-amber-700 hover:bg-amber-800 text-white px-8 py-4 rounded-md font-medium transition duration-300">Explore Menu</a> | |
<a href="#reservation" class="bg-transparent hover:bg-white hover:text-amber-800 text-white border-2 border-white px-8 py-4 rounded-md font-medium transition duration-300">Book a Table</a> | |
</div> | |
</div> | |
</section> | |
<!-- About Section --> | |
<section id="about" class="py-20 bg-white"> | |
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> | |
<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-1555396273-367ea4eb4db5?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1974&q=80" alt="Cafe Interior" class="rounded-lg shadow-xl w-full h-auto"> | |
</div> | |
<div class="md:w-1/2"> | |
<h2 class="text-3xl font-bold text-gray-900 mb-6">Our Cosmic Story</h2> | |
<p class="text-gray-600 mb-6">Founded in 2025 by ForbSpace Aeronautics and Space, ForbSpace Cafe brings space-inspired coffee culture to Earth. We source premium beans from sustainable farms and serve them with innovative brewing techniques developed from aerospace research.</p> | |
<p class="text-gray-600 mb-8">Our futuristic space features zero-gravity inspired decor and cutting-edge hospitality. Enjoy our signature orbital pour-over coffee while relaxing in our celestial lounge with panoramic views of the city skyline.</p> | |
<div class="grid grid-cols-2 gap-6"> | |
<div class="flex items-start"> | |
<div class="bg-amber-100 p-3 rounded-full mr-4"> | |
<i class="fas fa-coffee text-amber-700 text-xl"></i> | |
</div> | |
<div> | |
<h3 class="font-bold text-gray-900 mb-1">Premium Coffee</h3> | |
<p class="text-gray-600 text-sm">Direct trade from sustainable farms</p> | |
</div> | |
</div> | |
<div class="flex items-start"> | |
<div class="bg-amber-100 p-3 rounded-full mr-4"> | |
<i class="fas fa-bread-slice text-amber-700 text-xl"></i> | |
</div> | |
<div> | |
<h3 class="font-bold text-gray-900 mb-1">Fresh Baked</h3> | |
<p class="text-gray-600 text-sm">Daily made pastries & desserts</p> | |
</div> | |
</div> | |
<div class="flex items-start"> | |
<div class="bg-amber-100 p-3 rounded-full mr-4"> | |
<i class="fas fa-leaf text-amber-700 text-xl"></i> | |
</div> | |
<div> | |
<h3 class="font-bold text-gray-900 mb-1">Healthy Options</h3> | |
<p class="text-gray-600 text-sm">Vegan & gluten-free choices</p> | |
</div> | |
</div> | |
<div class="flex items-start"> | |
<div class="bg-amber-100 p-3 rounded-full mr-4"> | |
<i class="fas fa-wifi text-amber-700 text-xl"></i> | |
</div> | |
<div> | |
<h3 class="font-bold text-gray-900 mb-1">Work Friendly</h3> | |
<p class="text-gray-600 text-sm">Fast WiFi & power outlets</p> | |
</div> | |
</div> | |
</div> | |
</div> | |
</div> | |
</div> | |
</section> | |
<!-- Menu Section --> | |
<section id="menu" class="py-20 bg-gray-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">Our Menu</h2> | |
<p class="text-gray-600 max-w-2xl mx-auto">Discover our carefully crafted selection of coffees, teas, and delicious bites</p> | |
</div> | |
<div class="mb-12"> | |
<h3 class="text-2xl font-bold text-gray-900 mb-8 border-b-2 border-amber-200 pb-2">Coffee & Drinks</h3> | |
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8"> | |
<!-- Menu Item 1 --> | |
<div class="bg-white rounded-lg shadow-md overflow-hidden menu-item relative"> | |
<img src="https://images.unsplash.com/photo-1517701550927-30cf4ba1dba5?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80" alt="Espresso" class="w-full h-48 object-cover"> | |
<div class="p-6"> | |
<h4 class="font-bold text-xl text-gray-900 mb-2">Espresso</h4> | |
<p class="text-gray-600 mb-4">Our signature rich and aromatic espresso shot</p> | |
<span class="text-amber-700 font-bold">KSh 100</span> | |
</div> | |
<div class="menu-overlay absolute inset-0 bg-black bg-opacity-70 flex items-center justify-center p-6"> | |
<p class="text-white text-center">Made with our premium single-origin beans, extracted to perfection for a balanced flavor profile.</p> | |
</div> | |
</div> | |
<!-- Menu Item 2 --> | |
<div class="bg-white rounded-lg shadow-md overflow-hidden menu-item relative"> | |
<img src="https://images.unsplash.com/photo-1534778101976-62847782c213?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1974&q=80" alt="Cappuccino in a glass" class="w-full h-48 object-cover"> | |
<div class="p-6"> | |
<h4 class="font-bold text-xl text-gray-900 mb-2">Cappuccino</h4> | |
<p class="text-gray-600 mb-4">Classic espresso with steamed milk and foam</p> | |
<span class="text-amber-700 font-bold">KSh 70</span> | |
</div> | |
<div class="menu-overlay absolute inset-0 bg-black bg-opacity-70 flex items-center justify-center p-6"> | |
<p class="text-white text-center">Perfectly balanced with our house blend espresso, velvety steamed milk, and a delicate layer of microfoam.</p> | |
</div> | |
</div> | |
<!-- Menu Item 3 --> | |
<div class="bg-white rounded-lg shadow-md overflow-hidden menu-item relative"> | |
<img src="https://images.unsplash.com/photo-1568649929103-28ffbefaca1e?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80" alt="Iced Latte" class="w-full h-48 object-cover"> | |
<div class="p-6"> | |
<h4 class="font-bold text-xl text-gray-900 mb-2">Iced Latte</h4> | |
<p class="text-gray-600 mb-4">Espresso with chilled milk over ice</p> | |
<span class="text-amber-700 font-bold">KSh 120</span> | |
</div> | |
<div class="menu-overlay absolute inset-0 bg-black bg-opacity-70 flex items-center justify-center p-6"> | |
<p class="text-white text-center">Refreshing cold coffee drink made with double espresso, your choice of milk, and served over ice cubes.</p> | |
</div> | |
</div> | |
</div> | |
</div> | |
<div class="mb-12"> | |
<h3 class="text-2xl font-bold text-gray-900 mb-8 border-b-2 border-amber-200 pb-2">Smoothies & Drinks</h3> | |
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8"> | |
<!-- Smoothie Item 1 --> | |
<div class="bg-white rounded-lg shadow-md overflow-hidden menu-item relative"> | |
<img src="https://images.unsplash.com/photo-1505576399279-565b52d4ac71?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80" alt="Small Smoothie" class="w-full h-48 object-cover"> | |
<div class="p-6"> | |
<h4 class="font-bold text-xl text-gray-900 mb-2">Small Smoothie</h4> | |
<p class="text-gray-600 mb-4">Fresh fruit blended with yogurt or juice</p> | |
<span class="text-amber-700 font-bold">KSh 70</span> | |
</div> | |
<div class="menu-overlay absolute inset-0 bg-black bg-opacity-70 flex items-center justify-center p-6"> | |
<p class="text-white text-center">Choose from mango, strawberry, banana or mixed berry. Made fresh to order with real fruit.</p> | |
</div> | |
</div> | |
<!-- Smoothie Item 2 --> | |
<div class="bg-white rounded-lg shadow-md overflow-hidden menu-item relative"> | |
<img src="https://images.unsplash.com/photo-1546171753-97d7676e4602?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1974&q=80" alt="Large Smoothie" class="w-full h-48 object-cover"> | |
<div class="p-6"> | |
<h4 class="font-bold text-xl text-gray-900 mb-2">Large Smoothie</h4> | |
<p class="text-gray-600 mb-4">Generous portion of blended fresh fruits</p> | |
<span class="text-amber-700 font-bold">KSh 140</span> | |
</div> | |
<div class="menu-overlay absolute inset-0 bg-black bg-opacity-70 flex items-center justify-center p-6"> | |
<p class="text-white text-center">Our large size with extra fruit and your choice of add-ins: protein, chia seeds, or flax seeds.</p> | |
</div> | |
</div> | |
<!-- Milkshake Item 1 --> | |
<div class="bg-white rounded-lg shadow-md overflow-hidden menu-item relative"> | |
<img src="https://images.unsplash.com/photo-1572490122747-3968b75cc699?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1974&q=80" alt="Small Milkshake" class="w-full h-48 object-cover"> | |
<div class="p-6"> | |
<h4 class="font-bold text-xl text-gray-900 mb-2">Small Milkshake</h4> | |
<p class="text-gray-600 mb-4">Creamy and delicious in classic flavors</p> | |
<span class="text-amber-700 font-bold">KSh 100</span> | |
</div> | |
<div class="menu-overlay absolute inset-0 bg-black bg-opacity-70 flex items-center justify-center p-6"> | |
<p class="text-white text-center">Choose from vanilla, chocolate, strawberry or caramel. Made with premium ice cream and fresh milk.</p> | |
</div> | |
</div> | |
<!-- Milkshake Item 2 --> | |
<div class="bg-white rounded-lg shadow-md overflow-hidden menu-item relative"> | |
<img src="https://images.unsplash.com/photo-1572490122747-3968b75cc699?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1974&q=80" alt="Large Milkshake with whipped cream" class="w-full h-48 object-cover"> | |
<div class="p-6"> | |
<h4 class="font-bold text-xl text-gray-900 mb-2">Large Milkshake</h4> | |
<p class="text-gray-600 mb-4">Extra thick and creamy milkshake</p> | |
<span class="text-amber-700 font-bold">KSh 250</span> | |
</div> | |
<div class="menu-overlay absolute inset-0 bg-black bg-opacity-70 flex items-center justify-center p-6"> | |
<p class="text-white text-center">Our signature large milkshake with whipped cream and toppings. Available in all classic flavors plus specials like cookies & cream.</p> | |
</div> | |
</div> | |
</div> | |
</div> | |
<div class="mb-12"> | |
<h3 class="text-2xl font-bold text-gray-900 mb-8 border-b-2 border-amber-200 pb-2">Food & Pastries</h3> | |
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8"> | |
<!-- Menu Item 4 --> | |
<div class="bg-white rounded-lg shadow-md overflow-hidden menu-item relative"> | |
<img src="https://images.unsplash.com/photo-1601050690597-df0568f70950?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80" alt="Mandazi with Chai" class="w-full h-48 object-cover"> | |
<div class="p-6"> | |
<h4 class="font-bold text-xl text-gray-900 mb-2">Mandazi with Chai</h4> | |
<p class="text-gray-600 mb-4">Traditional Kenyan doughnuts with spiced tea</p> | |
<span class="text-amber-700 font-bold">KSh 100</span> | |
</div> | |
<div class="menu-overlay absolute inset-0 bg-black bg-opacity-70 flex items-center justify-center p-6"> | |
<p class="text-white text-center">Freshly made mandazi (African doughnuts) served with authentic Kenyan spiced tea - the perfect breakfast or snack combination.</p> | |
</div> | |
</div> | |
</div> | |
</div> | |
<div class="text-center"> | |
<a href="#" class="inline-block bg-amber-700 hover:bg-amber-800 text-white px-8 py-3 rounded-md font-medium transition duration-300">View Full Menu</a> | |
</div> | |
</div> | |
</section> | |
<!-- Gallery Section --> | |
<section id="gallery" class="py-20 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 Space</h2> | |
<p class="text-gray-600 max-w-2xl mx-auto">Take a peek inside our cozy cafe and see what makes ForbSpace special</p> | |
</div> | |
<div class="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-3 gap-6"> | |
<div class="overflow-hidden rounded-lg shadow-lg"> | |
<img src="https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80" alt="Cafe Interior" class="w-full h-64 object-cover transition duration-500 hover:scale-105"> | |
</div> | |
<div class="overflow-hidden rounded-lg shadow-lg"> | |
<img src="https://images.unsplash.com/photo-1414235077428-338989a2e8c0?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80" alt="Coffee Preparation" class="w-full h-64 object-cover transition duration-500 hover:scale-105"> | |
</div> | |
<div class="overflow-hidden rounded-lg shadow-lg"> | |
<img src="https://images.unsplash.com/photo-1555396273-367ea4eb4db5?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1974&q=80" alt="Cafe Seating" class="w-full h-64 object-cover transition duration-500 hover:scale-105"> | |
</div> | |
<div class="overflow-hidden rounded-lg shadow-lg"> | |
<img src="https://images.unsplash.com/photo-1551218808-94e220e084d2?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1974&q=80" alt="Coffee Beans" class="w-full h-64 object-cover transition duration-500 hover:scale-105"> | |
</div> | |
<div class="overflow-hidden rounded-lg shadow-lg"> | |
<img src="https://images.unsplash.com/photo-1481833761820-0509d3217039?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80" alt="Barista at Work" class="w-full h-64 object-cover transition duration-500 hover:scale-105"> | |
</div> | |
<div class="overflow-hidden rounded-lg shadow-lg"> | |
<img src="https://images.unsplash.com/photo-1517701550927-30cf4ba1dba5?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80" alt="Coffee Cup" class="w-full h-64 object-cover transition duration-500 hover:scale-105"> | |
</div> | |
</div> | |
</div> | |
</section> | |
<!-- Testimonials Section --> | |
<section class="py-20 bg-amber-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-gray-600 max-w-2xl 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 p-8 rounded-lg testimonial-card"> | |
<div class="flex items-center mb-4"> | |
<div class="text-amber-500 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> | |
</div> | |
<p class="text-gray-600 mb-6">"The best coffee in town! The atmosphere is so cozy and welcoming. I come here every weekend to work and enjoy their amazing cappuccinos."</p> | |
<div class="flex items-center"> | |
<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> | |
<p class="text-gray-500 text-sm">Regular Customer</p> | |
</div> | |
</div> | |
</div> | |
<!-- Testimonial 2 --> | |
<div class="bg-white p-8 rounded-lg testimonial-card"> | |
<div class="flex items-center mb-4"> | |
<div class="text-amber-500 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> | |
</div> | |
<p class="text-gray-600 mb-6">"I'm obsessed with their avocado toast - it's perfection! The staff is always friendly and remembers my usual order. My favorite spot in the city."</p> | |
<div class="flex items-center"> | |
<img src="https://randomuser.me/api/portraits/men/45.jpg" alt="Michael T." class="w-12 h-12 rounded-full mr-4"> | |
<div> | |
<h4 class="font-bold text-gray-900">Michael T.</h4> | |
<p class="text-gray-500 text-sm">Food Blogger</p> | |
</div> | |
</div> | |
</div> | |
<!-- Testimonial 3 --> | |
<div class="bg-white p-8 rounded-lg testimonial-card"> | |
<div class="flex items-center mb-4"> | |
<div class="text-amber-500 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-half-alt"></i> | |
</div> | |
</div> | |
<p class="text-gray-600 mb-6">"As a digital nomad, I appreciate the fast WiFi and comfortable seating. The coffee is excellent and the chocolate croissants are to die for!"</p> | |
<div class="flex items-center"> | |
<img src="https://randomuser.me/api/portraits/women/68.jpg" alt="Emma L." class="w-12 h-12 rounded-full mr-4"> | |
<div> | |
<h4 class="font-bold text-gray-900">Emma L.</h4> | |
<p class="text-gray-500 text-sm">Remote Worker</p> | |
</div> | |
</div> | |
</div> | |
</div> | |
</div> | |
</section> | |
<!-- Hours & Location Section --> | |
<section class="py-20 bg-white"> | |
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> | |
<div class="flex flex-col md:flex-row"> | |
<div class="md:w-1/2 mb-10 md:mb-0 md:pr-10"> | |
<h2 class="text-3xl font-bold text-gray-900 mb-6">Hours & Location</h2> | |
<div class="mb-8"> | |
<h3 class="text-xl font-bold text-gray-900 mb-4">Opening Hours</h3> | |
<ul class="space-y-2"> | |
<li class="flex justify-between border-b border-gray-100 pb-2"> | |
<span class="text-gray-600">Monday - Friday</span> | |
<span class="font-medium">7:00 AM - 8:00 PM</span> | |
</li> | |
<li class="flex justify-between border-b border-gray-100 pb-2"> | |
<span class="text-gray-600">Saturday</span> | |
<span class="font-medium">8:00 AM - 9:00 PM</span> | |
</li> | |
<li class="flex justify-between"> | |
<span class="text-gray-600">Sunday</span> | |
<span class="font-medium">8:00 AM - 6:00 PM</span> | |
</li> | |
</ul> | |
</div> | |
<div> | |
<h3 class="text-xl font-bold text-gray-900 mb-4">Contact Information</h3> | |
<div class="space-y-4"> | |
<div class="flex items-start"> | |
<i class="fas fa-map-marker-alt text-amber-700 mt-1 mr-4"></i> | |
<p class="text-gray-600">123 Coffee Street, Downtown, Cityville 12345</p> | |
</div> | |
<div class="flex items-center"> | |
<i class="fas fa-phone-alt text-amber-700 mr-4"></i> | |
<p class="text-gray-600">0719121212</p> | |
</div> | |
<div class="flex items-center"> | |
<i class="fas fa-envelope text-amber-700 mr-4"></i> | |
<p class="text-gray-600">[email protected]</p> | |
</div> | |
</div> | |
</div> | |
</div> | |
<div class="md:w-1/2"> | |
<div class="h-full rounded-lg overflow-hidden shadow-lg"> | |
<iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3022.215256018566!2d-73.98784492427068!3d40.74844097138892!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x89c259a9b3117469%3A0xd134e199a405a163!2sEmpire%20State%20Building!5e0!3m2!1sen!2sus!4v1689784299805!5m2!1sen!2sus" width="100%" height="100%" style="min-height: 400px;" allowfullscreen="" loading="lazy" referrerpolicy="no-referrer-when-downgrade"></iframe> | |
</div> | |
</div> | |
</div> | |
</div> | |
</section> | |
<!-- Reservation Section --> | |
<section id="reservation" class="py-20 bg-gray-50"> | |
<div class="max-w-3xl mx-auto px-4 sm:px-6 lg:px-8"> | |
<div class="bg-white rounded-xl shadow-lg overflow-hidden"> | |
<div class="md:flex"> | |
<div class="md:w-1/2 bg-amber-700 text-white p-10 flex items-center"> | |
<div> | |
<h2 class="text-3xl font-bold mb-6">Make a Reservation</h2> | |
<p class="mb-6">Book your table in advance to ensure the best experience at ForbSpace Cafe.</p> | |
<div class="flex items-center"> | |
<i class="fas fa-phone-alt mr-4 text-xl"></i> | |
<div> | |
<p class="text-sm">Have questions?</p> | |
<p class="font-bold">+25412121212</p> | |
</div> | |
</div> | |
</div> | |
</div> | |
<div class="md:w-1/2 p-10"> | |
<form> | |
<div class="mb-6"> | |
<label for="name" class="block text-gray-700 font-medium mb-2">Full Name</label> | |
<input type="text" id="name" class="w-full px-4 py-2 border border-gray-300 rounded-md focus:outline-none focus:ring-2 focus:ring-amber-500"> | |
</div> | |
<div class="mb-6"> | |
<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-md focus:outline-none focus:ring-2 focus:ring-amber-500"> | |
</div> | |
<div class="mb-6"> | |
<label for="phone" class="block text-gray-700 font-medium mb-2">Phone Number</label> | |
<input type="tel" id="phone" class="w-full px-4 py-2 border border-gray-300 rounded-md focus:outline-none focus:ring-2 focus:ring-amber-500"> | |
</div> | |
<div class="grid grid-cols-2 gap-6 mb-6"> | |
<div> | |
<label for="date" class="block text-gray-700 font-medium mb-2">Date</label> | |
<input type="date" id="date" class="w-full px-4 py-2 border border-gray-300 rounded-md focus:outline-none focus:ring-2 focus:ring-amber-500"> | |
</div> | |
<div> | |
<label for="time" class="block text-gray-700 font-medium mb-2">Time</label> | |
<input type="time" id="time" class="w-full px-4 py-2 border border-gray-300 rounded-md focus:outline-none focus:ring-2 focus:ring-amber-500"> | |
</div> | |
</div> | |
<div class="mb-6"> | |
<label for="guests" class="block text-gray-700 font-medium mb-2">Number of Guests</label> | |
<select id="guests" class="w-full px-4 py-2 border border-gray-300 rounded-md focus:outline-none focus:ring-2 focus:ring-amber-500"> | |
<option>1 person</option> | |
<option>2 people</option> | |
<option>3 people</option> | |
<option>4 people</option> | |
<option>5+ people</option> | |
</select> | |
</div> | |
<button type="submit" class="w-full bg-amber-700 hover:bg-amber-800 text-white py-3 rounded-md font-medium transition duration-300">Book Now</button> | |
</form> | |
</div> | |
</div> | |
</div> | |
</div> | |
</section> | |
<!-- Contact Section --> | |
<section id="contact" class="py-20 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">Get In Touch</h2> | |
<p class="text-gray-600 max-w-2xl mx-auto">Have questions or feedback? We'd love to hear from you!</p> | |
</div> | |
<div class="flex flex-col md:flex-row gap-10"> | |
<div class="md:w-1/2"> | |
<form class="space-y-6"> | |
<div> | |
<label for="contact-name" class="block text-gray-700 font-medium mb-2">Your Name</label> | |
<input type="text" id="contact-name" class="w-full px-4 py-2 border border-gray-300 rounded-md focus:outline-none focus:ring-2 focus:ring-amber-500"> | |
</div> | |
<div> | |
<label for="contact-email" class="block text-gray-700 font-medium mb-2">Email Address</label> | |
<input type="email" id="contact-email" class="w-full px-4 py-2 border border-gray-300 rounded-md focus:outline-none focus:ring-2 focus:ring-amber-500"> | |
</div> | |
<div> | |
<label for="contact-subject" class="block text-gray-700 font-medium mb-2">Subject</label> | |
<input type="text" id="contact-subject" class="w-full px-4 py-2 border border-gray-300 rounded-md focus:outline-none focus:ring-2 focus:ring-amber-500"> | |
</div> | |
<div> | |
<label for="contact-message" class="block text-gray-700 font-medium mb-2">Message</label> | |
<textarea id="contact-message" rows="5" class="w-full px-4 py-2 border border-gray-300 rounded-md focus:outline-none focus:ring-2 focus:ring-amber-500"></textarea> | |
</div> | |
<button type="submit" class="bg-amber-700 hover:bg-amber-800 text-white px-8 py-3 rounded-md font-medium transition duration-300">Send Message</button> | |
</form> | |
</div> | |
<div class="md:w-1/2"> | |
<div class="bg-gray-50 p-8 rounded-lg h-full"> | |
<h3 class="text-xl font-bold text-gray-900 mb-6">Other Ways to Connect</h3> | |
<div class="space-y-6"> | |
<div class="flex items-start"> | |
<div class="bg-amber-100 p-3 rounded-full mr-4"> | |
<i class="fas fa-map-marker-alt text-amber-700"></i> | |
</div> | |
<div> | |
<h4 class="font-bold text-gray-900 mb-1">Visit Us</h4> | |
<p class="text-gray-600">Kitale Town</p> | |
</div> | |
</div> | |
<div class="flex items-start"> | |
<div class="bg-amber-100 p-3 rounded-full mr-4"> | |
<i class="fas fa-phone-alt text-amber-700"></i> | |
</div> | |
<div> | |
<h4 class="font-bold text-gray-900 mb-1">Call Us</h4> | |
<p class="text-gray-600">+254712121212</p> | |
<p class="text-gray-600 text-sm">Monday - Friday, 9AM - 5PM</p> | |
</div> | |
</div> | |
<div class="flex items-start"> | |
<div class="bg-amber-100 p-3 rounded-full mr-4"> | |
<i class="fas fa-envelope text-amber-700"></i> | |
</div> | |
<div> | |
<h4 class="font-bold text-gray-900 mb-1">Email Us</h4> | |
<p class="text-gray-600">[email protected]</p> | |
</div> | |
</div> | |
<div class="flex items-start"> | |
<div class="bg-amber-100 p-3 rounded-full mr-4"> | |
<i class="fas fa-hashtag text-amber-700"></i> | |
</div> | |
<div> | |
<h4 class="font-bold text-gray-900 mb-1">Follow Us</h4> | |
<div class="flex space-x-4 mt-2"> | |
<a href="#" class="text-gray-600 hover:text-amber-700"><i class="fab fa-facebook-f text-xl"></i></a> | |
<a href="#" class="text-gray-600 hover:text-amber-700"><i class="fab fa-instagram text-xl"></i></a> | |
<a href="#" class="text-gray-600 hover:text-amber-700"><i class="fab fa-twitter text-xl"></i></a> | |
<a href="#" class="text-gray-600 hover:text-amber-700"><i class="fab fa-tiktok text-xl"></i></a> | |
</div> | |
</div> | |
</div> | |
</div> | |
</div> | |
</div> | |
</div> | |
</div> | |
</section> | |
<!-- Newsletter Section --> | |
<section class="py-16 bg-amber-700 text-white"> | |
<div class="max-w-4xl mx-auto px-4 sm:px-6 lg:px-8 text-center"> | |
<h2 class="text-2xl font-bold mb-4">Join Our Coffee Club</h2> | |
<p class="mb-8 max-w-2xl mx-auto">Subscribe to our newsletter and be the first to know about special offers, new menu items, and events at ForbSpace Cafe.</p> | |
<form class="flex flex-col sm:flex-row gap-4 max-w-md mx-auto"> | |
<input type="email" placeholder="Your email address" class="flex-grow px-4 py-3 rounded-md text-gray-900 focus:outline-none focus:ring-2 focus:ring-amber-500"> | |
<button type="submit" class="bg-black hover:bg-gray-900 text-white px-6 py-3 rounded-md font-medium transition duration-300">Subscribe</button> | |
</form> | |
</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-10"> | |
<div> | |
<h3 class="text-xl font-bold mb-6">ForbSpace Cafe</h3> | |
<p class="text-gray-400">Experience space-inspired coffee culture from the innovators at ForbSpace Aeronautics and Space.</p> | |
</div> | |
<div> | |
<h4 class="font-bold text-lg mb-6">Quick Links</h4> | |
<ul class="space-y-3"> | |
<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="#gallery" class="text-gray-400 hover:text-white transition duration-300">Gallery</a></li> | |
<li><a href="#about" class="text-gray-400 hover:text-white transition duration-300">About Us</a></li> | |
<li><a href="#contact" class="text-gray-400 hover:text-white transition duration-300">Contact</a></li> | |
</ul> | |
</div> | |
<div> | |
<h4 class="font-bold text-lg mb-6">Opening Hours</h4> | |
<ul class="space-y-3 text-gray-400"> | |
<li class="flex justify-between"> | |
<span>Mon - Fri</span> | |
<span>7AM - 8PM</span> | |
</li> | |
<li class="flex justify-between"> | |
<span>Saturday</span> | |
<span>8AM - 9PM</span> | |
</li> | |
<li class="flex justify-between"> | |
<span>Sunday</span> | |
<span>8AM - 6PM</span> | |
</li> | |
</ul> | |
</div> | |
<div> | |
<h4 class="font-bold text-lg mb-6">Contact Us</h4> | |
<address class="not-italic text-gray-400 space-y-3"> | |
<p>Space Innovation District<br>Houston, Texas</p> | |
<p>Phone: 0719121212</p> | |
<p>Email: [email protected]</p> | |
</address> | |
</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 ForbSpace Cafe. 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-tiktok"></i></a> | |
</div> | |
</div> | |
</div> | |
</footer> | |
<!-- Floating Action Button --> | |
<a href="#reservation" class="fixed bottom-8 right-8 bg-amber-700 text-white w-16 h-16 rounded-full flex items-center justify-center shadow-lg floating-btn hover:bg-amber-800 transition duration-300 z-40"> | |
<i class="fas fa-calendar-alt text-2xl"></i> | |
</a> | |
<script> | |
// Mobile menu toggle | |
document.getElementById('mobile-menu-button').addEventListener('click', function() { | |
const menu = document.getElementById('mobile-menu'); | |
menu.classList.toggle('hidden'); | |
}); | |
// Smooth scrolling for anchor links | |
document.querySelectorAll('a[href^="#"]').forEach(anchor => { | |
anchor.addEventListener('click', function (e) { | |
e.preventDefault(); | |
const targetId = this.getAttribute('href'); | |
const targetElement = document.querySelector(targetId); | |
if (targetElement) { | |
window.scrollTo({ | |
top: targetElement.offsetTop - 80, | |
behavior: 'smooth' | |
}); | |
// Close mobile menu if open | |
const mobileMenu = document.getElementById('mobile-menu'); | |
if (!mobileMenu.classList.contains('hidden')) { | |
mobileMenu.classList.add('hidden'); | |
} | |
} | |
}); | |
}); | |
// Sticky navigation | |
window.addEventListener('scroll', function() { | |
const nav = document.querySelector('nav'); | |
if (window.scrollY > 50) { | |
nav.classList.add('shadow-lg'); | |
} else { | |
nav.classList.remove('shadow-lg'); | |
} | |
}); | |
</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=STABA99/forbspace-cafe" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body> | |
</html> |