--- import type { PriceService, ServicesSectionProps } from '@/types/globalInterfaces'; const { services = [], title = "Unsere Fahrzeuge für jeden Anlass" } = Astro.props as ServicesSectionProps; ---

{title}

{services.map((service, index) => (
{service.icon}

{service.title}

{service.description}

    {service.features?.map((feature, i) => (
  • {feature}
  • ))}
))}