closes #13
All checks were successful
Deploy / Deploy to Production (push) Successful in 21s

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
isUnknown 2026-03-21 09:08:50 +01:00
parent 4803390a1f
commit 764a36edb5
2 changed files with 4 additions and 2 deletions

View file

@ -47,6 +47,8 @@ const dict = {
privacy: { fr: "Confidentialité", en: "Privacy" }, privacy: { fr: "Confidentialité", en: "Privacy" },
// About // About
our_team: { fr: "NOTRE ÉQUIPE", en: "OUR TEAM" }, our_team: { fr: "NOTRE ÉQUIPE", en: "OUR TEAM" },
prev_slide: { fr: "← PRÉCÉDENT", en: "← BEFORE" },
next_slide: { fr: "SUIVANT →", en: "NEXT →" },
// White Papers // White Papers
white_paper_label: { fr: "LIVRE BLANC", en: "WHITE PAPER" }, white_paper_label: { fr: "LIVRE BLANC", en: "WHITE PAPER" },
read_wp: { fr: "Télécharger", en: "Download" }, read_wp: { fr: "Télécharger", en: "Download" },

View file

@ -132,7 +132,7 @@
class="nav-button" class="nav-button"
disabled={currentSlide === 0} disabled={currentSlide === 0}
onclick={prevSlide} onclick={prevSlide}
>← BEFORE</button> >{t('prev_slide')}</button>
<ul class="pagination-indicator"> <ul class="pagination-indicator">
{#each { length: totalSlides } as _, i} {#each { length: totalSlides } as _, i}
@ -151,7 +151,7 @@
class="nav-button" class="nav-button"
disabled={currentSlide === totalSlides - 1} disabled={currentSlide === totalSlides - 1}
onclick={nextSlide} onclick={nextSlide}
>NEXT →</button> >{t('next_slide')}</button>
</div> </div>
</section> </section>
{/if} {/if}