// PÁGINAS INTERNAS — componentes compartidos por servicios, sectores, nosotros, casos, blog, contacto function PageHero({ kicker, title, lead, breadcrumb, children }) { return (
{breadcrumb && (
Inicio/{breadcrumb}
)} {kicker && {kicker}}

{lead &&

{lead}

} {children}

); } function FeatureItem({ icon, title, text }) { return (
{icon}

{title}

{text}

); } function CheckIcon() { return ( ); } function ShieldIcon() { return ( ); } function CloudIcon() { return ( ); } function CodeIcon() { return ( ); } function NetworkIcon() { return ( ); } function ChartIcon() { return ( ); } function GearIcon() { return ( ); } function GlobeIcon() { return ( ); } function HeadsetIcon() { return ( ); } function BankIcon() { return ( ); } function FactoryIcon() { return ( ); } function TruckIcon() { return ( ); } function HealthIcon() { return ( ); } function EnergyIcon() { return ( ); } function EduIcon() { return ( ); } function MapPin({ size = 36 }) { return ( ); } Object.assign(window, { PageHero, FeatureItem, CheckIcon, ShieldIcon, CloudIcon, CodeIcon, NetworkIcon, ChartIcon, GearIcon, GlobeIcon, HeadsetIcon, BankIcon, FactoryIcon, TruckIcon, HealthIcon, EnergyIcon, EduIcon, MapPin, });