--- import type { Portfolio as Props } from '~/types'; import Headline from '~/components/ui/Headline.astro'; import WidgetWrapper from '~/components/ui/WidgetWrapper.astro'; import Image from '~/components/common/Image.astro'; import Button from '~/components/ui/Button.astro'; const { title = '', subtitle = '', tagline = '', items = [], callToAction, id, isDark = false, classes = {}, bg = await Astro.slots.render('bg'), } = Astro.props; ---
{ items && items.map((image) => (
)) }
{ callToAction && (
) }