import { ExternalLink, Github, Star } from 'lucide-react'; export default function Projects() { const projects = [ { title: 'E-Commerce Platform', description: 'A full-featured online shopping platform with real-time inventory, payment processing, and admin dashboard.', image: 'bg-gradient-to-br from-orange-400 to-pink-500', tags: ['Next.js', 'TypeScript', 'Stripe', 'PostgreSQL'], github: 'https://github.com', demo: 'https://demo.com', featured: true }, { title: 'Task Management App', description: 'Collaborative project management tool with real-time updates, team workspaces, and analytics dashboard.', image: 'bg-gradient-to-br from-blue-400 to-indigo-500', tags: ['React', 'Node.js', 'Socket.io', 'MongoDB'], github: 'https://github.com', demo: 'https://demo.com', featured: true }, { title: 'AI Content Generator', description: 'AI-powered writing assistant that helps create blog posts, social media content, and marketing copy.', image: 'bg-gradient-to-br from-purple-400 to-violet-500', tags: ['Next.js', 'OpenAI', 'Prisma', 'Tailwind'], github: 'https://github.com', demo: 'https://demo.com', featured: false }, { title: 'Fitness Tracking App', description: 'Mobile-first application for tracking workouts, nutrition, and health metrics with progress visualization.', image: 'bg-gradient-to-br from-green-400 to-emerald-500', tags: ['React Native', 'Firebase', 'Chart.js', 'Redux'], github: 'https://github.com', demo: 'https://demo.com', featured: false }, { title: 'Real Estate Marketplace', description: 'Property listing platform with advanced search, virtual tours, and mortgage calculator features.', image: 'bg-gradient-to-br from-cyan-400 to-blue-500', tags: ['Vue.js', 'Django', 'PostgreSQL', 'AWS'], github: 'https://github.com', demo: 'https://demo.com', featured: false }, { title: 'Social Media Dashboard', description: 'Analytics dashboard for managing multiple social media accounts with scheduling and reporting.', image: 'bg-gradient-to-br from-rose-400 to-red-500', tags: ['React', 'GraphQL', 'Apollo', 'Material-UI'], github: 'https://github.com', demo: 'https://demo.com', featured: false } ]; return (

Featured Projects

Some of my recent work that I'm proud of

{/* Featured Projects */}
{projects.filter(p => p.featured).map((project) => (
Featured

{project.title}

{project.description}

{project.tags.map((tag) => ( {tag} ))}
))}
{/* Other Projects */}
{projects.filter(p => !p.featured).map((project) => (

{project.title}

{project.description}

{project.tags.slice(0, 3).map((tag) => ( {tag} ))}
))}
{/* View All Link */}
View more on GitHub
); }