"use client";
import { useState } from "react";
import { motion, AnimatePresence } from "framer-motion";
import Image from "next/image";
export default function ProjectShowcase({ images }: { images: string[] }) {
const [index, setIndex] = useState(0);
return (
{/* Main Image */}
{/* Subtle Overlay Label */}
View {index + 1} of {images.length}
{/* Thumbnail Column */}
{images.map((img, i) => (
))}
);
}