/* Good Time Coffee — shared building blocks (L'OR-inspired luxe) */ const { useState, useEffect, useRef, useMemo } = React; /* ---------- Icons ---------- */ const Icon = { Search: (p) => , Bag: (p) => , User: (p) => , Heart: (p) => , Close: (p) => , Plus: (p) => , Minus: (p) => , Arrow: (p) => , ArrowUp: (p) => , Star: (p) => , Leaf: (p) => , Bean: (p) => , Menu: (p) => , }; /* ---------- Product data — vrais produits Morandini Caffè (50% Arabica) ---------- */ const PRODUCTS = [ { id: "p1", name: "Supercrema Capsules", line: "Supercrema", origin: "Morandini Caffè · Italie", family: "Capsules", roast: "Espresso", intensity: 8, arabica: 50, price: 18.80, weight: "10 caps", notes: ["Crema dense", "Cacao", "Rond"], stock: 64, rating: 4.8, accent: "#C2632A", img: "img-capsule" }, { id: "p5", name: "Miscela Crema Grains", line: "Miscela Crema", origin: "Morandini Caffè · Italie", family: "Grains", roast: "Torréfié", intensity: 8, arabica: 50, price: 17.80, weight: "1 kg", notes: ["Cacao", "Fruits secs", "Crema"], stock: 24, rating: 4.9, accent: "#6E5A47", img: "img-grain" }, { id: "p7", name: "Miscela Supercrema Grains", line: "Miscela Supercrema", origin: "Morandini Caffè · Italie", family: "Grains", roast: "Torréfié", intensity: 9, arabica: 50, price: 18.80, weight: "1 kg", notes: ["Crema intense", "Cacao", "Épices"], stock: 30, rating: 4.9, accent: "#C2632A", img: "img-grainsuper" }, { id: "p8", name: "Miscela Oro Grains", line: "Miscela Oro", origin: "Morandini Caffè · Italie", family: "Grains", roast: "Torréfié", intensity: 7, arabica: 90, price: 22.90, weight: "1 kg", notes: ["Floral", "Miel", "Rond"], stock: 18, rating: 5.0, accent: "#C8A24A", img: "img-grainoro" }, { id: "p9", name: "Maxima Dosettes", line: "Maxima", origin: "Morandini Caffè · Italie", family: "Dosettes", roast: "Espresso", intensity: 8, arabica: 100, price: 79.50, weight: "150 dosettes", notes: ["100% Arabica", "ESE 44mm", "Rond"], stock: 20, rating: 4.9, accent: "#B89150", img: "img-maxima" }, { id: "p10", name: "Miscela Crema Dosettes", line: "Miscela Crema", origin: "Morandini Caffè · Italie", family: "Dosettes", roast: "Espresso", intensity: 7, arabica: 50, price: 75.00, weight: "150 dosettes", notes: ["ESE 44mm", "Cacao", "Doux"], stock: 40, rating: 4.7, accent: "#6E5A47", img: "img-dosettebox" }, ]; /* ---------- Currency helper ---------- */ const fmt = (n) => new Intl.NumberFormat("fr-FR", { style: "currency", currency: "EUR" }).format(n); /* ---------- Intensity meter ---------- */ function Intensity({ value = 0, max = 10, color = "var(--gold)" }) { if (!value) return null; return ( {Array.from({ length: max }).map((_, i) => ( ))} ); } /* ---------- Navbar ---------- */ function Navbar({ onNav, view, cartCount, onOpenCart }) { const links = [ { id: "home", label: "Accueil" }, { id: "shop", label: "Boutique" }, { id: "page:faq", label: "FAQ" }, { id: "page:contact", label: "Contact" }, ]; return (
{/* Announcement bar */}
Livraison offerte dès 30 € · Paiement sécurisé · Expédié sous 48h
{/* Wordmark */} onNav("home")} style={{ cursor: "pointer", textAlign: "center" }}>
Coffee·For
YOU
{/* Secondary nav */}
{links.map(l => ( onNav(l.id)} className="tracked" style={{ cursor: "pointer", fontSize: 11, color: view === l.id ? "var(--gold)" : "var(--text-dim)", position: "relative", paddingBottom: 14, paddingTop: 14, borderBottom: view === l.id ? "1px solid var(--gold)" : "1px solid transparent", transition: "color 160ms", }}> {l.label} ))}
); } const iconBtn = { width: 38, height: 38, borderRadius: 2, display: "inline-flex", alignItems: "center", justifyContent: "center", color: "var(--text)", transition: "color 160ms", }; /* ---------- Footer (always deep noir + gold) ---------- */ function Footer({ onNav }) { const ivory = "rgba(242,236,224,"; const go = (label) => { const key = (window.PAGE_ROUTES || {})[label]; if (key && onNav) onNav("page:" + key); }; return ( ); } Object.assign(window, { Icon, PRODUCTS, fmt, Navbar, Footer, Intensity });