// Shared layout for legal / policy pages (Privacy, Terms, Descriptions). // Children are rendered as long-form text inside the .hp-legal block. function HpLegal({ title, eyebrow, updated, children }) { return (
{eyebrow} {updated && Last updated ยท {updated}}

{title}

{children}
); } window.HpLegal = HpLegal;