// Final CTA section + Footer for WuClock site. const { motion: ftMotion } = window.Motion; function FinalCTA() { const [ref, shown] = useInViewOnce(0.2); return (
{/* Glow */}
// Descargar Tu cuerpo te está hablando. Más energía, mejor sueño y rituales de 8 minutos — personalizados para tu cuerpo. Compatible con iOS 16+ · Android 10+ · Funciona sin wearable
); } // ────────────── Footer ────────────── function Footer() { const year = new Date().getFullYear(); const cols = [ { title: 'Producto', links: [ { label: 'La App', href: 'app.html' }, { label: 'Wearable', href: 'wuclock-band.html' }, { label: 'Método', href: '#metodo' }, { label: 'Blog', href: 'blog/index.html' }, { label: 'Descargar gratis',href: '#descargar' }, ], }, { title: 'Compañía', links: [ { label: 'Sobre WuClock', href: 'sobre.html' }, { label: 'Contacto', href: 'contacto.html' }, { label: 'Prensa', href: 'contacto.html#prensa' }, ], }, { title: 'Legal', links: [ { label: 'Política de privacidad', href: 'politica-de-privacidad.html', external: true }, { label: 'Términos y condiciones', href: 'terminos-y-condiciones.html', external: true }, ], }, ]; const socials = [ { name: 'Instagram', href: 'https://www.instagram.com/wuclockapp/', icon: }, { name: 'TikTok', href: 'https://www.tiktok.com/@wuclock?is_from_webapp=1&sender_device=pc', icon: }, { name: 'Email', href: 'mailto:hola@wuclock.com', icon: }, ]; return (
{/* Top grid */}
{/* Brand block */}
WuClock

Resincronizá tu cuerpo para vivir alineado a tu ritmo natural. Hecho en Argentina.

{socials.map((s) => ( {s.icon} ))}
{/* Link columns */} {cols.map((c) => (

{c.title}

))}
{/* Divider */}

© {year} WuClock. Todos los derechos reservados.

hola@wuclock.com · Buenos Aires, Argentina

{/* Disclaimer */}

WuClock es una herramienta de bienestar. No reemplaza consulta médica. La información que brinda la app es educativa y se basa en principios de Medicina Tradicional China + datos de tu wearable; ante cualquier síntoma persistente, consultá con un profesional de la salud.

); } // ────────────── Tiny SVG icons ────────────── function IgIcon() { return ( ); } function TkIcon() { return ( ); } function XIcon() { return ( ); } function MailIcon() { return ( ); } function ArFlagSmall() { return ( ); } Object.assign(window, { FinalCTA, Footer });