{it.title}
{it.body}
Ver detalle// sections-1.jsx — Header, Hero, Clientes, Servicios const Bolt = ({ className = "" }) => ; const ArrowRight = ({ size = 16 }) => ; const SunIcon = ({ size = 15 }) => ; const MoonIcon = ({ size = 15 }) => ; function KThemeToggle() { const [mode, setMode] = React.useState(() => window.KapozTheme ? window.KapozTheme.getMode() : "auto"); const [eff, setEff] = React.useState(() => window.KapozTheme ? window.KapozTheme.getEffective() : "dark"); React.useEffect(() => { if (!window.KapozTheme) return; return window.KapozTheme.subscribe((m, e) => { setMode(m); setEff(e); }); }, []); const onClick = () => { if (window.KapozTheme) window.KapozTheme.cycle(); }; const modeLabel = mode === "auto" ? `Auto (ahora ${eff === "light" ? "claro" : "oscuro"})` : mode === "light" ? "Claro" : "Oscuro"; return ( ); } // ── Redes sociales (iconos silueta, sin fondo, heredan currentColor) ── const IconInstagram = () => ; const IconLinkedIn = () => ; const IconFacebook = () => ; const IconTikTok = () => ; const IconYouTube = () => ; const SOCIAL_LINKS = [ { name: "Instagram", href: "https://www.instagram.com/kapoz.ia/", Icon: IconInstagram }, { name: "LinkedIn", href: "https://www.linkedin.com/company/kapoz/", Icon: IconLinkedIn }, { name: "Facebook", href: "https://www.facebook.com/profile.php?id=61589618690401", Icon: IconFacebook }, { name: "TikTok", href: "https://www.tiktok.com/@kapoz.ia", Icon: IconTikTok }, { name: "YouTube", href: "https://www.youtube.com/@Kapozlab", Icon: IconYouTube }]; function KSocials({ className = "" }) { return (
); } function KHeader({ current = "home" }) { const [scrolled, setScrolled] = React.useState(false); React.useEffect(() => { const onScroll = () => setScrolled(window.scrollY > 24); window.addEventListener("scroll", onScroll, { passive: true }); onScroll(); return () => window.removeEventListener("scroll", onScroll); }, []); const links = [ { href: current === "home" ? "#servicios" : window.B("servicios/"), label: "Servicios" }, { href: current === "home" ? "#casos" : window.B("casos/"), label: "Casos" }, { href: current === "home" ? "#academy" : window.B("academy/"), label: "Academy" }, { href: current === "home" ? "#blog" : window.B("blog/"), label: "Blog" }, { href: current === "home" ? "#filosofia" : window.B("#filosofia"), label: "Filosofía" }]; return (Combinamos inteligencia artificial, estrategia, contenido y performance para construir marcas preparadas para el futuro.
Seis disciplinas integradas en un único sistema. Brand, performance, contenido, creators y automatización trabajando hacia el mismo objetivo: ventas.
{it.body}
Ver detalle