type Props = { title: string; description: string; pageTitle?: string; }; export default function TwoColumnLayoutHeader({ title, description, pageTitle, }: Props) { return ( <> {pageTitle &&
{description}