{% extends "base.html.twig" %}
{% block content %}
{{ include('@components/hero-header.html.twig', {
image: content.image.url,
text: content.heroImageText
}) }}
{{ include('@components/image-text-section.html.twig', {
image: content.teaserImage.url,
text: content.teaserText|raw,
order: {
text: '1',
image: '2'
}
}) }}
{{ include('@components/services-section.html.twig', {
title: content.servicesOverviewTitle,
items: content.servicesOverviewDetails,
changeLastItem: true
}) }}
{% endblock %}