// Grupo JOMI — corporate site header (sticky nav) function SiteHeader({ route, onNav }) { const { Button } = window.GrupoJOMIDesignSystem_7a96bd; const [open, setOpen] = React.useState(false); const links = [ { id: 'home', label: 'Inicio' }, { id: 'units', label: 'Unidades de negocio' }, { id: 'about', label: 'Nosotros' }, ]; return (
{ e.preventDefault(); onNav('home'); }}> Grupo JOMI
); } window.SiteHeader = SiteHeader;