--- import FeatureItem from '@/components/content/FeatureItem.astro'; import Container from '@/components/primitives/Container.astro'; import Grid from '@/components/primitives/Grid.astro'; import Section from '@/components/primitives/Section.astro'; import SectionHeader from '@/components/primitives/SectionHeader.astro'; import type { FeatureItemContent } from '@/types/site'; interface Props { description?: string; eyebrow?: string; items: FeatureItemContent[]; title: string; titleHtml?: string; tone?: 'default' | 'tinted'; } const { description, eyebrow, items, title, titleHtml, tone = 'default' } = Astro.props; ---
{items.map((item) => )}