import { ArrowUpRight } from 'lucide-react' const Projects = () => { const projects = [ { id: 1, title: 'The Horizon Tower', location: 'Downtown District', category: 'Residential', image: 'https://images.unsplash.com/photo-1545324418-cc1a3fa10c00?w=800&q=80', year: '2024' }, { id: 2, title: 'Marina Heights', location: 'Waterfront', category: 'Mixed Use', image: 'https://images.unsplash.com/photo-1512917774080-9991f1c4c750?w=800&q=80', year: '2023' }, { id: 3, title: 'Green Valley Estate', location: 'Suburban', category: 'Residential', image: 'https://images.unsplash.com/photo-1600596542815-ffad4c1539a9?w=800&q=80', year: '2023' }, { id: 4, title: 'Commerce Plaza', location: 'Business District', category: 'Commercial', image: 'https://images.unsplash.com/photo-1486718448742-163732cd1544?w=800&q=80', year: '2022' } ] return (
{/* Header */}
Portfolio

Featured Projects

View All Projects
{/* Projects Grid */}
{projects.map((project) => (
{/* Image Container */}
{project.title} {/* Overlay */}
{/* Content */}
{project.category} — {project.year}

{project.title}

{project.location}
))}
) } export default Projects