diff --git a/attached_assets/image_1772316737734.png b/attached_assets/image_1772316737734.png new file mode 100644 index 0000000..0019553 Binary files /dev/null and b/attached_assets/image_1772316737734.png differ diff --git a/client/src/components/photo-gallery.tsx b/client/src/components/photo-gallery.tsx index a0b91e8..f76ff0c 100644 --- a/client/src/components/photo-gallery.tsx +++ b/client/src/components/photo-gallery.tsx @@ -224,22 +224,38 @@ export default function GalleryPage() { return (
{isLoading ? ( -
-
+
+ {Array.from({ length: 12 }).map((_, i) => ( +
+ ))}
) : images && images.length > 0 ? ( -
-
- setLightboxIndex(i)} - /> -
-

+ <> +

{images.length} Fotos

-
+
+ {images.map((img, i) => ( + + ))} +
+ ) : (

Keine Fotos vorhanden

)}