import type { PropsWithChildren, ReactNode } from "react"; interface SectionProps extends PropsWithChildren { id: string; kicker: string; title: string; description: string; aside?: ReactNode; } export function Section({ id, kicker, title, description, aside, children }: SectionProps) { return (

{kicker}

{title}

{description}

{aside ?
{aside}
: null}
{children}
); }