diff --git a/src/app/components/carousel.tsx b/src/app/components/carousel.tsx
index d867c89..3cb748f 100644
--- a/src/app/components/carousel.tsx
+++ b/src/app/components/carousel.tsx
@@ -30,28 +30,32 @@ export default function Carousel({ images, className }: Props) {
{images.map((src, index) => (
-

+
))}
-
-
+ {images.length > 1 && (
+ <>
+
+
-
- {scrollSnaps.map((_, index) => (
-
+
+ {scrollSnaps.map((_, index) => (
+
+ >
+ )}
);
}