import React from 'react'; import { ExternalLink, Github } from 'lucide-react'; const Portfolio: React.FC = () => { const projects = [ { title: 'E-Commerce Platform', description: 'A full-stack e-commerce solution with React, Node.js, and Stripe integration.', image: 'https://images.unsplash.com/photo-1556742049-0cfed4f6a45d?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80', tags: ['React', 'Node.js', 'MongoDB', 'Stripe'], liveUrl: '#', githubUrl: '#' }, { title: 'Task Management App', description: 'A collaborative project management tool with real-time updates and team features.', image: 'https://images.unsplash.com/photo-1611224923853-80b023f02d71?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80', tags: ['Vue.js', 'Firebase', 'Tailwind CSS'], liveUrl: '#', githubUrl: '#' }, { title: 'Weather Dashboard', description: 'A responsive weather application with location-based forecasts and data visualization.', image: 'https://images.unsplash.com/photo-1504608524841-42fe6f032b4b?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80', tags: ['React', 'TypeScript', 'Chart.js', 'API'], liveUrl: '#', githubUrl: '#' } ]; return (

Featured Projects

A showcase of my recent work and creative solutions

{projects.map((project, index) => (
{project.title}

{project.title}

{project.description}

{project.tags.map((tag) => ( {tag} ))}
))}
View All Projects
); }; export default Portfolio;