/* global React */ const { Badge, Button, Card, ProductCard } = window.DesignSystem_b1e064; const BOTTLE = 'assets/images/cuoccio-bottle.jpg?v=6'; const TREE_CREAM = 'assets/logos/cuoccio-tree-cream.png'; const TREE_LEAF = 'assets/logos/cuoccio-tree-leaf.png'; const HERO_VIDEO = 'assets/video/hero.mp4?v=2'; const TERRITORIO = 'assets/images/territorio.jpg'; function Section({ children, style, watermark, wmSide = 'right' }) { return
{watermark && ( )}
{children}
; } /* Small tree mark used as a section divider / maker's seal. */ function Seal() { return (
); } function Stat({ value, label }) { return (
{value}
{label}
); } function Home({ onShop, onStory }) { return (
{/* HERO */}
{/* Background video (fills the hero; gradient above stays as fallback if it can't load) */}
); } window.Home = Home; window.HomeSection = Section;