logos: liste MAJ

Footer: rajouter un lien vers la brochure
Footer: rajouter un lien vers Champs Libres
Page d'accueil: le premier CTA Essayer la démo doit s'ouvrir dans un fenêtre séparée
Prêt à commencer => on va essayer d'être plus inclusif en mettant Prêts ou Prêt.e
This commit is contained in:
Boris Waaub
2026-03-26 10:38:18 +01:00
parent 58b9df92c0
commit 8749e5f207
6 changed files with 7368 additions and 40 deletions

View File

@@ -13,10 +13,6 @@ client_logos:
logo: "/images/logos/dune.png"
- name: "haute-vienne"
logo: "/images/logos/haute-vienne.png"
- name: "imio"
logo: "/images/logos/imio.png"
- name: "infirmiersrues"
logo: "/images/logos/infirmiersrues.png"
- name: "resad"
logo: "/images/logos/resad.png"
- name: "rixensart"
@@ -35,14 +31,6 @@ client_logos:
logo: "/images/logos/vendée.png"
- name: "reseauhepatitec"
logo: "/images/logos/reseauhepatitec.webp"
- name: "agglo-grandgueret"
logo: "/images/logos/agglo-grandgueret.webp"
- name: "interstices-stpierre"
logo: "/images/logos/interstices-stpierre.png"
- name: "laplateformereunion"
logo: "/images/logos/laplateformereunion.png"
- name: "cabinetmb-solutionssociales"
logo: "/images/logos/cabinetmb-solutionssociales.webp"
# testimonials:
# - name: "John Smith"
# title: "CTO at TechStartup"

View File

@@ -114,14 +114,9 @@ pagination = { pagerSize = 6, path = "page" }
text = "Essayer la démo"
url = "http://demo.chill.social/"
open_tab = true
# Social Media Links (optional)
[params.social]
gitlab = "https://gitlab.com/Chill-Projet/chill-bundles"
# Navigation Menu
[menu]
[[menu.main]]
@@ -159,6 +154,16 @@ pagination = { pagerSize = 6, path = "page" }
url = "/contact"
weight = 5
[[menu.footer_column_1]]
name = "Voir la brochure CHILL"
url = "/pdf/Brochure_Chill.pdf"
weight = 1
[[menu.footer_column_2]]
name = "Champs-Libres"
url = "https://www.champs-libres.coop/"
weight = 1
[languages.en.menu]
[[languages.en.menu.main]]
name = "Features"
@@ -193,6 +198,11 @@ pagination = { pagerSize = 6, path = "page" }
url = "/contact"
weight = 5
[[languages.en.menu.footer_column_1]]
name = "Download the CHILL brochure"
url = "/pdf/Brochure_Chill.pdf"
weight = 1
[languages.nl.menu]
[[languages.nl.menu.main]]
name = "Functies"
@@ -226,3 +236,8 @@ pagination = { pagerSize = 6, path = "page" }
name = "Contacteer Ons"
url = "/contact"
weight = 5
[[languages.nl.menu.footer_column_1]]
name = "Download de CHILL-brochure"
url = "/pdf/Brochure_Chill.pdf"
weight = 1

View File

@@ -3260,10 +3260,6 @@ body {
font-weight: 600;
}
.uppercase {
text-transform: uppercase;
}
.italic {
font-style: italic;
}
@@ -3292,10 +3288,6 @@ body {
letter-spacing: -0.025em;
}
.tracking-wider {
letter-spacing: 0.05em;
}
.\!text-white {
--tw-text-opacity: 1 !important;
color: rgb(255 255 255 / var(--tw-text-opacity, 1)) !important;

File diff suppressed because one or more lines are too long

View File

@@ -14,23 +14,17 @@
</div>
<!-- Column 1 -->
<div class="flex-1">
<h3 class="text-sm font-semibold uppercase tracking-wider text-gray-900 mb-4">{{ .Site.Params.footer.column_1_title }}</h3>
<ul class="space-y-2">
{{ range .Site.Menus.footer_column_1 }}
<li><a href="{{ .URL }}" class="text-gray-600 hover:text-primary-600">{{ .Name }}</a></li>
{{ end }}
</ul>
<div class="flex-1 text-center">
{{ range .Site.Menus.footer_column_1 }}
<a href="{{ .URL }}" target="_blank" class="text-white hover:text-primary-600">{{ .Name }}</a>
{{ end }}
</div>
<!-- Column 2 -->
<div class="flex-1">
<h3 class="text-sm font-semibold uppercase tracking-wider text-gray-900 mb-4">{{ .Site.Params.footer.column_2_title }}</h3>
<ul class="space-y-2">
{{ range .Site.Menus.footer_column_2 }}
<li><a href="{{ .URL }}" class="text-gray-600 hover:text-primary-600">{{ .Name }}</a></li>
{{ end }}
</ul>
<div class="flex-1 text-center">
{{ range .Site.Menus.footer_column_2 }}
<a href="{{ .URL }}" target="_blank" class="text-white hover:text-primary-600">{{ .Name }}</a>
{{ end }}
</div>
<!-- Social Media -->

View File

@@ -25,7 +25,7 @@
</p>
<div class="flex flex-col sm:flex-row gap-4">
{{ if and $primary_button_text $primary_button_url }}
<a href="{{ $primary_button_url }}" class="btn-primary text-center">
<a href="{{ $primary_button_url }}" class="btn-primary text-center" target="_blank">
{{ $primary_button_text }}
</a>
{{ end }}