import { Head } from '@inertiajs/react'; export default function CoffeeHouseLanding() { return ( <> {/* Main coffee house landing section with the coffee-themed background */}
{/* Background image */} Coffee background {/* Overlay tint */}
{/* Header/Navigation */}

House of Coffee

{/* Main content container */}
{/* Hero section */}

Welcome to our Coffee House

Discover the finest artisanal coffee and a warm, inviting atmosphere

{/* Featured products */}
{[ { title: "Specialty Coffee", description: "Single-origin beans, expertly roasted in-house", image: "https://images.unsplash.com/photo-1515694346937-94d85e41e6f0?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80" }, { title: "Fresh Pastries", description: "Baked daily using traditional recipes", image: "https://images.unsplash.com/photo-1517433367423-c7e5b0f35086?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80" }, { title: "Cozy Atmosphere", description: "The perfect place to relax or work", image: "https://images.unsplash.com/photo-1554118811-1e0d58224f24?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80" } ].map((item, i) => (
{item.title}

{item.title}

{item.description}

))}
); }