/* global React, Wordmark, Icon, WA_URL, PHONE, PHONE_FMT */
const { useState: useStateNav, useEffect: useEffectNav } = React;
/* ===========================================================
Navigation
=========================================================== */
function Nav({ onOpenCalendar, onHome = true, active }) {
const [open, setOpen] = useStateNav(false);
const [scrolled, setScrolled] = useStateNav(false);
useEffectNav(() => {
const onScroll = () => setScrolled(window.scrollY > 8);
window.addEventListener('scroll', onScroll, { passive: true });
return () => window.removeEventListener('scroll', onScroll);
}, []);
const HOME = 'index.html';
const base = onHome ? '' : HOME;
const links = [
{ href: base + '#soluciones', label: 'Soluciones', id: 'soluciones' },
{ href: 'SLF Energia - Sector Publico.html', label: 'Sector Público', id: 'sector-publico' },
{ href: base + '#calculadora', label: 'Calculadora', id: 'calculadora' },
{ href: base + '#casos', label: 'Casos', id: 'casos' },
{ href: 'SLF Energia - Nosotros.html', label: 'Nosotros', id: 'nosotros' },
{ href: base + '#recursos', label: 'Recursos', id: 'recursos' },
{ href: 'SLF Energia - Contacto.html', label: 'Contacto', id: 'contacto' },
];
return (
{links.map((l) => (
{l.label}
))}
WhatsApp
Agendar diagnóstico
setOpen(!open)}
style={{
display: 'none', border: '1px solid var(--line)', borderRadius: 8,
padding: 8, background: 'transparent', color: 'var(--ink)'
}}
className="nav-menu-btn"
>
{open && (
)}
);
}
/* ===========================================================
Sticky CTA (appears after hero on desktop)
=========================================================== */
function StickyCTA({ onOpenCalendar }) {
const [show, setShow] = useStateNav(false);
useEffectNav(() => {
const onScroll = () => setShow(window.scrollY > 900);
window.addEventListener('scroll', onScroll, { passive: true });
return () => window.removeEventListener('scroll', onScroll);
}, []);
return (
¿Listo para evaluar tu operación?
— diagnóstico técnico sin costo
);
}
/* ===========================================================
Hero
=========================================================== */
function Hero({ onOpenCalendar }) {
return (
{/* readability overlay */}
{/* monospace placeholder tag — top-right */}
[ PLACEHOLDER · foto aérea planta solar industrial — overlay azul ]
Operando en Chile desde 2014
B2B · INDUSTRIAL · O&M
Plantas solares industriales para empresas que no pueden parar.
Diseño, ingeniería, instalación y O&M de proyectos fotovoltaicos en Chile.
Operamos en minería, retail, manufactura y agroindustria — desde Arica a Puerto Montt.
Sin compromiso
·
Respuesta en 24h hábiles
·
Visita a sitio incluida
{/* Floating stats card */}
{[
{ num: 12.4, suffix: ' MWp', label: 'Capacidad instalada' },
{ num: 47, suffix: '', label: 'Proyectos entregados' },
{ num: 12, suffix: ' años', label: 'Operando en Chile' },
{ num: 99.4, suffix: '%', label: 'Disponibilidad O&M', decimals: 1 },
].map((s, i) => (
))}
);
}
/* ===========================================================
Credibility bar
=========================================================== */
function Credibility() {
const certs = [
'SEC',
'ChileCompra · Proveedor del Estado',
'ISO 9001',
'ISO 14001',
'ACESOL',
'TE4 · Recepción',
];
const clients = ['Minera del Norte', 'Retail Andino', 'Frutícola Maule', 'Logística Pacífico', 'Manufactura Sur', 'Vitivinícola Valle'];
return (
Trabajamos con
4 proyectos en construcción
·
17 en ingeniería
{clients.map((c) => {c} )}
);
}
Object.assign(window, { Nav, StickyCTA, Hero, Credibility });