--- import type { HTMLAttributes } from 'astro/types'; interface Props extends HTMLAttributes<'section'> { maxWidth?: 'none' | String colReverse?: boolean wrapperClass?: string wFull?: boolean hFull?: boolean sectionClass?: boolean } const { maxWidth = '1080px', colReverse = true, wrapperClass = '', wFull = true, hFull = false, sectionClass = true, ...props } = Astro.props; const twoColumn = Astro.slots.has('left') || Astro.slots.has('right'); const twoColumnClasses = ` ${maxWidth === 'none' ? 'justify-center' : 'justify-center md:justify-evenly lg:justify-between'} ${colReverse ? 'flex-col-reverse' : 'flex-col'} md:flex-row items-center md:flex-row`; const className = `max-w-[${maxWidth}] ${hFull ? 'min-h-screen' : 'h-auto'} ${wFull ? 'w-full' : `w-[${maxWidth}]`} px-5 md:p-0 flex gap-x-20 gap-y-4${twoColumn ? twoColumnClasses : ''}${props.class ? ` ${props.class}` : ''}`; ---
{twoColumn ? (
) : ( )}