"use client"; import { useState } from "react"; import { motion, AnimatePresence } from "framer-motion"; export default function ProjectShowcase({ images }: { images: string[] }) { const [index, setIndex] = useState(0); return (
{/* Large Featured Image (Left 9 Columns) */}
{/* Subtle Overlay Label */}

View {index + 1} of {images.length}

{/* Thumbnail Column (Right 3 Columns) */}
{images.map((img, i) => ( ))}
); }