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

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