'use client' import { useRef } from 'react' import { useTranslations } from 'next-intl' import { motion, useInView } from 'framer-motion' import Image from 'next/image' import { MOCK_GALLERY } from '@/lib/mock' export default function GallerySection() { const ref = useRef(null) const isInView = useInView(ref, { once: true, margin: '-80px' }) return (
Galeri {/* Masonry-like grid */}
{MOCK_GALLERY.map((item, i) => ( {item.titleTr}

{item.titleTr}

))}
) }