import Footer from "./Footer"; import StaticLogoHeader from "./StaticLogoHeader"; type InfoPageProps = { title: string; subtitle?: string; children: React.ReactNode; }; export default function InfoPage({ title, subtitle, children }: InfoPageProps) { return (

{title}

{subtitle ?

{subtitle}

: null}
{children}
); }