import { useState } from "react"; import { Button } from "@/components/ui/button"; import { ChevronLeft, ChevronRight, X } from "lucide-react"; const GallerySection = () => { const [selectedImage, setSelectedImage] = useState(null); const images = [ "https://images.unsplash.com/photo-1553005746-5be7d6d48a81?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80", "https://images.unsplash.com/photo-1588286840104-8957b019727f?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80", "https://images.unsplash.com/photo-1599586120429-48281b6f0ece?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80", "https://images.unsplash.com/photo-1592656094267-764a45160876?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80", "https://images.unsplash.com/photo-1547347298-4074fc3086f0?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80", "https://images.unsplash.com/photo-1544213456-e1c259fecc4f?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80", ]; const openLightbox = (image: string) => { setSelectedImage(image); document.body.style.overflow = "hidden"; }; const closeLightbox = () => { setSelectedImage(null); document.body.style.overflow = "auto"; }; return ( ); }; export default GallerySection;