import { motion } from "framer-motion"; import { GALLERY_IMAGES } from "@/data/event-data"; import { ImageIcon } from "lucide-react"; import { useTranslation } from "react-i18next"; const GallerySection = () => { const { t } = useTranslation(); return ( ); }; export default GallerySection;