---
import Button from '../Button.astro';
import type { ServicesIntroSection } from '../../types/home-sections';
interface Props { section: ServicesIntroSection }
const { section } = Astro.props;
---
{section.servicesHeading}
{section.services.map((item) => - {item}
)}
{section.commitmentsHeading}
{section.commitments.map((item) => - {item}
)}