/* ─── SHARED UI PRIMITIVES ─── */
const { C: uiC, FONTS: uiFONTS } = window.LT;
const { useInView: uiUseInView } = window.LTHooks;
function Section({ children, id, dark, ariaLabel, style: sx }) {
const [ref, vis] = uiUseInView(0.06);
return (
{children}
); } window.LTUI = { Section, SectionTag, SectionTitle, Lede };