// ============================================================ // Foro Valor Emprendedor ? Sections // ============================================================ const { useState: useStateS, useEffect: useEffectS, useRef: useRefS } = React; // ---------- Reveal on scroll ---------- function Reveal({ children, delay = 0, className = "", as: As = "div", ...rest }) { const ref = useRefS(null); const [visible, setVisible] = useStateS(false); useEffectS(() => { const el = ref.current; if (!el) return; // Fallback: if not observed quickly, show anyway const fallback = setTimeout(() => setVisible(true), 600 + delay); const io = new IntersectionObserver( (entries) => entries.forEach((e) => { if (e.isIntersecting) { setVisible(true); clearTimeout(fallback); io.disconnect(); } }), { threshold: 0.05, rootMargin: "0px 0px -40px 0px" } ); io.observe(el); // Also check immediately in case already in view const rect = el.getBoundingClientRect(); if (rect.top < window.innerHeight && rect.bottom > 0) { setVisible(true); clearTimeout(fallback); io.disconnect(); } return () => { clearTimeout(fallback); io.disconnect(); }; }, []); return ( {children} ); } // ---------- Video section ---------- function VideoSection() { const [playing, setPlaying] = useStateS(false); return (
Edici?n 2025 ? Resumen As? se vivi? el foro el a?o pasado.
setPlaying(!playing)}>
// VIDEO ? Highlights Foro 2025 // Mar de Vigo ? 1920x1080
{!playing ? ( ) : ( )}
02:47 ? 4K
+600 asistentes en 2025
12 ponentes internacionales
98% recomienda volver
); } // ---------- About section ---------- function AboutSection() { return (
Sobre el foro Un encuentro pensado para quienes construyen cada día.

Foro Valor Emprendedor nace para reunir, bajo un mismo techo, a la comunidad emprendedora de Galicia con las voces más influyentes del habla hispana. Un día intenso de ponencias, mesas redondas, networking estructurado y casos reales.

No es un congreso más. Es el lugar donde cierras tu próximo cliente, conoces a tu próximo socio y encuentras la idea que llevabas meses buscando.

Ponencias magistrales Networking 1:1 Mesas redondas Casos de éxito Zona inversores
Vista del foro
// FOTO · Vista auditorio Mar de Vigo
En directo · Sept 2026
01
Auditorio Mar de Vigo Avda. Beiramar s/n, Vigo
02
26 septiembre 2026 De 09:00 a 20:30
03
18 ponentes Del habla hispana
04
1.425 plazas Aforo limitado
); } Object.assign(window, { Reveal, VideoSection, AboutSection });