diff --git a/client/public/photos/6.jpg b/client/public/photos/6.jpg new file mode 100644 index 0000000..bb16ecc Binary files /dev/null and b/client/public/photos/6.jpg differ diff --git a/client/src/components/ImageCarousel.tsx b/client/src/components/ImageCarousel.tsx index 74f8af1..c6e8bd7 100644 --- a/client/src/components/ImageCarousel.tsx +++ b/client/src/components/ImageCarousel.tsx @@ -1,7 +1,7 @@ import React, { useState, useEffect } from 'react'; import { motion, AnimatePresence } from 'framer-motion'; -const images = ['/photos/5.jpg', '/photos/2.jpg', '/photos/3.jpg', '/photos/4.jpg', '/photos/1.jpg']; +const images = ['/photos/5.jpg', '/photos/2.jpg', '/photos/3.jpg', '/photos/4.jpg', '/photos/1.jpg', '/photos/6.jpg']; const ImageCarousel: React.FC = () => { const [currentIndex, setCurrentIndex] = useState(0);