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

{title}

{subtitle ?

{subtitle}

: null}
{children}
); }