---
import type { BenefitsSection } from '../../types/home-sections';
import VideoCard from '../VideoCard.astro';
interface Props { section: BenefitsSection }
const { section } = Astro.props;
---
{section.heading}
{section.subheading}
{section.items.map((item) => - {item}
)}