"use client"; import ScrollStack, { ScrollStackItem } from "./ScrollStack.jsx"; const projects = [ { id: 1, title: "E-Commerce Platform", category: "Web Development", description: "A modern e-commerce platform with seamless checkout experience and real-time inventory management. Built with cutting-edge technologies for optimal performance.", tags: ["Next.js", "Stripe", "Tailwind"], year: "2024", cardClass: "card-1", }, { id: 2, title: "Finance Dashboard", category: "UI/UX Design", description: "Interactive financial dashboard with real-time data visualization and analytics. Designed for clarity and actionable insights.", tags: ["React", "D3.js", "TypeScript"], year: "2024", cardClass: "card-2", }, { id: 3, title: "AI Content Platform", category: "Full Stack", description: "AI-powered content generation platform with collaborative editing features. Leveraging the latest in machine learning for creative workflows.", tags: ["Python", "OpenAI", "Next.js"], year: "2023", cardClass: "card-3", }, { id: 4, title: "Creative Agency Site", category: "Motion Design", description: "Award-winning agency website with scroll-driven animations and 3D elements. A showcase of modern web capabilities.", tags: ["GSAP", "Three.js", "Framer"], year: "2023", cardClass: "card-4", }, ]; export default function ProjectsSection() { return (
{ }} > {/* Header */}

Selected Work

Featured Projects

{/* Project Cards */} {projects.map((project, index) => (
{/* Project Number */} {String(index + 1).padStart(2, '0')} {/* Category Badge */} {project.category} {/* Title */}

{project.title}

{/* Description */}

{project.description}

{/* Tags */}
{project.tags.map((tag) => ( {tag} ))}
{/* Year */} {project.year} {/* Link Icon */}
))}
); }