const { Button, Card, Badge, Icon, Quote } = window.LifeTechDesignSystem_3250e2; const NAV = [["Sage","sage.html"],["Market intelligence","market-intelligence.html"],["Mission","mission.html"],["Get involved","involved.html"]]; const LOGO = "https://lifewell.tech/wp-content/uploads/2025/02/cropped-Gemini_high-resolution-logo-featuring-a-bright-healthy-green-tree-leaf-representing-life-and-wellness.jpg"; const MAILTO = (subject) => "mailto:John.Huang@LifeWell.tech?subject=" + encodeURIComponent(subject); function Header({current}){ const [open,setOpen]=React.useState(false); return (
LifeWell.tech
{open&&()}
); } function Footer(){ return ( ); } function Band({tone,children,style,...rest}){ const cls = "band" + (tone==="ivory"?" band-ivory":tone==="ink"?" band-ink":""); return
{children}
; } function SectionHead({eyebrow,title,lede,aside}){ return (
{eyebrow&&

{eyebrow}

}

{title}

{lede&&

{lede}

}
{aside}
); } function Slot({id,placeholder,ratio="16/10",radius=14}){ return
; } function Hero({eyebrow,title,lede,actions,children}){ return (

{eyebrow}

{title}

{lede&&

{lede}

} {actions&&
{actions}
}
{children}
); } function CardStack({children,...rest}){ return {children}; } function Page({current,children}){ return (
{children}