@@ -67,7 +67,7 @@ export function Slideshow({ images }: SlideshowProps) {
6767 />
6868
6969 { /* Overlay with gradient */ }
70- < div className = "absolute inset-0 bg-gradient -to-t from-black/60 via-transparent to-transparent" />
70+ < div className = "absolute inset-0 bg-linear -to-t from-black/60 via-transparent to-transparent" />
7171
7272 { /* Caption */ }
7373 < div className = "absolute bottom-0 left-0 right-0 p-6" >
@@ -79,7 +79,7 @@ export function Slideshow({ images }: SlideshowProps) {
7979 { /* Play/Pause Button */ }
8080 < Button
8181 aria-label = "pausiert die Slideshow"
82- className = "absolute top-4 right-4 bg-black/20 hover:bg-black/40 text-white border-0 backdrop-blur-sm "
82+ className = "absolute top-4 right-4 bg-black/20 hover:bg-black/40 text-white border-0 backdrop-blur-xs "
8383 onClick = { togglePlayPause }
8484 size = "sm"
8585 title = "Slideshow pausieren"
@@ -95,7 +95,7 @@ export function Slideshow({ images }: SlideshowProps) {
9595 { /* Navigation Buttons */ }
9696 < Button
9797 aria-label = "zeigt vorheriges Bild an"
98- className = "absolute left-4 top-1/2 -translate-y-1/2 bg-black/20 hover:bg-black/40 text-white border-0 backdrop-blur-sm "
98+ className = "absolute left-4 top-1/2 -translate-y-1/2 bg-black/20 hover:bg-black/40 text-white border-0 backdrop-blur-xs "
9999 onClick = { goToPrevious }
100100 size = "sm"
101101 title = "vorheriges Bild anzeigen"
@@ -106,7 +106,7 @@ export function Slideshow({ images }: SlideshowProps) {
106106
107107 < Button
108108 aria-label = "zeigt nächstes Bild an"
109- className = "absolute right-4 top-1/2 -translate-y-1/2 bg-black/20 hover:bg-black/40 text-white border-0 backdrop-blur-sm "
109+ className = "absolute right-4 top-1/2 -translate-y-1/2 bg-black/20 hover:bg-black/40 text-white border-0 backdrop-blur-xs "
110110 onClick = { goToNext }
111111 size = "sm"
112112 title = "nächstes Bild anzeigen"
@@ -120,7 +120,7 @@ export function Slideshow({ images }: SlideshowProps) {
120120 < div className = "flex justify-center mt-4 space-x-2 overflow-x-auto pb-2" >
121121 { images . map ( ( image , index ) => (
122122 < button
123- className = { `flex- shrink-0 w-16 h-12 rounded-lg overflow-hidden border-2 transition-all duration-300 ${
123+ className = { `shrink-0 w-16 h-12 rounded-lg overflow-hidden border-2 transition-all duration-300 ${
124124 index === currentSlide
125125 ? theme === "dark"
126126 ? "border-blue-400"
0 commit comments