complete rework of offerings

This commit is contained in:
Tobias Brunner 2025-02-28 14:13:51 +01:00
parent 84e25c82d1
commit 20f27bd6b5
No known key found for this signature in database
16 changed files with 313 additions and 294 deletions

View file

@ -30,53 +30,14 @@
</svg>
</div>
<header class="mb-20">
<h2 class="fs-32 fs-lg-40 fw-semibold mb-20">Inquiry Received Successfully!</h2>
<h2 class="fs-32 fs-lg-40 fw-semibold mb-20">Inquiry received successfully!</h2>
<div class="fs-base text-gray-600 w-lg-75 mx-auto">
<p class="mb-0">Thank you for your interest in {{ service.name }}! We have received your inquiry and our team will contact you shortly. A confirmation email will be sent to your provided email address.</p>
<p class="mb-0">Thank you for your interest in {{ service.name }}. We have received your inquiry and our team will contact you shortly. A confirmation email will be sent to your provided email address.</p>
</div>
</header>
<div>
<a href="{% url 'services:service_list' %}" class="btn btn-primary btn-lg w-100 w-md-auto" role="button">Browse More Services</a>
</div>
</div>
</div>
</div>
<div class="w-lg-34 bg-purple-50 rounded-16 p-24 d-flex flex-column justify-content-between">
<div class="d-flex align-items-center mb-24">
<div class="card__image mb-0">
{% if service.image %}
<img class="img-fluid" src="{{ service.image.url }}" alt="{{ service.name }}">
{% endif %}
</div>
<div class="card__header ps-16">
<h3 class="card__title">{{ service.name }}</h3>
<p class="card__subtitle mb-0">{{ service.category }}</p>
</div>
</div>
{% if service.description %}
<div class="mb-24">
<div class="text-black">
<p class="mb-0">{{ service.description|safe }}</p>
</div>
</div>
{% endif %}
{% if service.pricing_plans %}
<div>
{% for plan in service.pricing_plans %}
<div class="bg-white border-all rounded-7 p-20 {% if not forloop.last %}mb-12{% endif %}">
<h3 class="text-purple fs-18 fw-semibold lh-1-7 mb-0">{{ plan.name }}</h3>
<div>
<ul class="list-unstyled text-gray-500 fs-14 lh-1-7 ps-0 mb-0">
{% for price in plan.prices %}
<li>{{ price.amount }} {{ price.currency }} per {{ price.interval }}</li>
{% endfor %}
</ul>
</div>
</div>
{% endfor %}
</div>
{% endif %}
</div>
</div>
</div>
</section>