{% extends "base.html.twig" %}
{% block content %}
{% if webspaceSettings is defined %}
{{ include('@components/sub-navigation.html.twig') }}
{% endif %}
{{ include('@components/image-text-section.html.twig', {
image: content.teaserImage.url,
text: content.teaserText|raw,
order: {
text: '1',
image: '2'
},
button: {
text: content.teaserUrlTitle,
link: content.teaserUrl
}
}) }}
{{ include('@components/only-text.html.twig', {
text: content.onlyText,
}) }}
{{ include('@components/text-white-box-section.html.twig', {
title: content.overviewTitle,
items: content.overviewDetails,
}) }}
{{ include('@components/rely-on-us-section.html.twig', {
title: content.relyTitle,
items: content.relyDetails,
}) }}
{{ include('@components/we-consult-you-slider.html.twig', {
title: content.consultingTitle,
text: content.consultingText,
items: content.consulting,
}) }}
{{ include('@components/contact-box.html.twig') }}
{{ include('@components/interests-slider.html.twig') }}
{% endblock %}