export interface LegalSection { heading: string; paragraphs: string[]; bullets?: string[]; } /** Shared layout for long-form legal documents (Privacy, Terms). */ export function LegalDoc({ title, updated, intro, sections, }: { title: string; updated: string; intro: string; sections: LegalSection[]; }) { return (
Legal
Last updated: {updated}
{intro}
{p}
))} {s.bullets && (This document is provided for transparency about how PodcastYes operates. It is a general template and is not legal advice; have it reviewed by qualified counsel for your jurisdiction before relying on it.