--- import WidgetWrapper from "~/components/ui/WidgetWrapper.astro"; import ItemGrid from "~/components/ui/ItemGrid.astro"; import Headline from "~/components/ui/Headline.astro"; import type { Features } from "~/types"; const { title = await Astro.slots.render("title"), subtitle = await Astro.slots.render("subtitle"), tagline = await Astro.slots.render("tagline"), items = [], columns = 2, id, isDark = false, classes = {}, bg = await Astro.slots.render("bg"), } = Astro.props as Features; ---