From d154d2e937bd638db9653513d73071a9611724e7 Mon Sep 17 00:00:00 2001 From: Alexander Daichendt Date: Sun, 24 Aug 2025 12:17:30 +0200 Subject: [PATCH] feat: add animation --- src/components/Carousel.astro | 113 ++++++++++++++++++------ src/components/ThreeColumnSection.astro | 104 ++++++++++++++++++++-- 2 files changed, 184 insertions(+), 33 deletions(-) diff --git a/src/components/Carousel.astro b/src/components/Carousel.astro index d82455c..8ef2067 100644 --- a/src/components/Carousel.astro +++ b/src/components/Carousel.astro @@ -12,6 +12,7 @@ interface Props { const { images } = Astro.props; const carouselId = `carousel-${Math.random().toString(36).slice(2, 11)}`; +const helpId = `${carouselId}-help`; ---