{% extends "base.html.twig" %}
{% block content %}
{% if content.video is not null %}
{{ include('@components/video-section.html.twig', {
url: content.video.url,
background: 'grey',
order: {
video: '1'
}
}) }}
{% endif %}
{% if content.discountText is defined and content.discountText != null %}
<div class="discount-section bg-yellow py-4">
<div class="container">
<div class="col-12 text-center">
<a class="fs-4" target="_blank" href="https://shop.hebammen-azh.de/mein-hebammen-azh">
{{ content.discountText|raw }}
</a>
</div>
</div>
</div>
{% endif %}
<div class="container">
<div class="row mt-6">
<div class="col-12">
<h2 class="point light mb-5">{{ content.testimonialsTitle|raw }}</h2>
</div>
</div>
<div class="row mb-6">
<div class="col-12 col-lg-4 mb-4 mb-lg-0 text-center text-lg-start">
{{ include('@components/button.html.twig', {
withIcon: false,
text: content.textLink1|default(''),
link: {
href: content.link1|default('')
}
}) }}
</div>
<div class="col-12 col-lg-4 mb-4 mb-lg-0 d-lg-flex justify-content-lg-center text-center">
{{ include('@components/button.html.twig', {
withIcon: false,
text: content.textLink2|default(''),
link: {
href: content.link2|default('')
}
}) }}
</div>
<div class="col-12 col-lg-4 d-lg-flex justify-content-lg-end text-center">
{{ include('@components/button.html.twig', {
withIcon: false,
text: content.textLink3|default(''),
link: {
href: content.link3|default('')
}
}) }}
</div>
</div>
<div class="row">
{% for testimonial in content.testimonials %}
<div class="col-12 col-lg-6 mb-5">
{{ include('@components/testimonial.html.twig', {
text: testimonial.text
}) }}
</div>
{% endfor %}
</div>
</div>
{{ include('@components/we-consult-you-slider.html.twig', {
title: content.consultingTitle,
text: content.consultingText,
items: content.consulting,
}) }}
{{ include('@components/contact-box.html.twig') }}
{% endblock %}