--- import { Icon } from 'astro-icon/components'; import { Picture } from '@astrojs/image/components'; import type { Content } from '~/types'; import Headline from '../ui/Headline.astro'; import WidgetWrapper from '../ui/WidgetWrapper.astro'; const { title = await Astro.slots.render('title'), subtitle = await Astro.slots.render('subtitle'), tagline, content = await Astro.slots.render('content'), items = [], image = await Astro.slots.render('image'), isReversed = false, isAfterContent = false, id, isDark = false, classes = {}, bg = await Astro.slots.render('bg'), } = Astro.props as Content; ---
{content &&
} { items && (
{items.map(({ title: title2, description, icon }) => (
{title2 &&

{title2}

} {description &&

}

))}
) }