export type HomeSectionProps = { containerClassName?: string; maxWidth?: string; reversed?: boolean; flipped?: boolean; children: React.ReactNode; }; export function HomeSection({ containerClassName, maxWidth = "1150px", reversed = false, flipped = false, children, }: HomeSectionProps) { return (