);
}
// ---------------- Footer ----------------
function Footer() {
return (
);
}
// ---------------- Final CTA ----------------
function FinalCTA() {
return (
Free in-home quote
Get a quote before we touch the wall.
Tell us what's going on. We'll come look, write it up, and email it within 48 hours. No obligation.
);
}
// ---------------- Reveal on scroll ----------------
function useReveal() {
useEffect(() => {
const els = document.querySelectorAll('.cg-reveal');
const io = new IntersectionObserver((entries) => {
entries.forEach((e, i) => {
if (e.isIntersecting) {
setTimeout(() => e.target.classList.add('is-in'), (parseInt(e.target.dataset.delay || '0', 10)));
io.unobserve(e.target);
}
});
}, { threshold: 0.12 });
els.forEach(el => io.observe(el));
return () => io.disconnect();
}, []);
}
Object.assign(window, { Icon, BrandMark, Nav, Footer, FinalCTA, useReveal });