feat(order/display): Ajoute la section pour choisir une formule.
🐛 fix(caddy): Corrige la configuration TLS et les noms de domaine.
```
This commit is contained in:
Serreau Jovann
2025-10-28 09:31:24 +01:00
parent a47a683154
commit caffdc6287
2 changed files with 13 additions and 1 deletions

View File

@@ -1,4 +1,4 @@
commande.esy-web.fr,tutoriel.esy-web.dev, mainframe.esy-web.dev {
commande.esy-web.fr, tutoriel.esy-web.dev, mainframe.esy-web.dev {
tls {
dns cloudflare bnbe6SmF2kYBnDi4rEeoPI0wNXeFDWn0xZv7Dnfp
}

View File

@@ -1,4 +1,16 @@
{% extends 'order/base.twig' %}
{% block content %}
<section class="py-12">
<div class="max-w-screen-2xl mx-auto px-4 sm:px-6 lg:px-8">
<h1 class="section-title text-3xl sm:text-4xl text-center mb-12 text-gray-900">
Choisissez la formule qui vous convient
</h1>
</div>
<div class="grid grid-cols-1 gap-8 lg:grid-cols-2 xl:grid-cols-4">
{% for formule in formules %}
{% endfor %}
</div>
</section>
{% endblock %}