import React from 'react'; import { ExternalLink } from 'lucide-react'; const WebsiteScreenshots: React.FC = () => { const websites = [ { title: 'E-Commerce Platform', image: 'https://images.unsplash.com/photo-1460925895917-afdab827c52f?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80', url: '#', description: 'Modern online store with seamless checkout' }, { title: 'Portfolio Website', image: 'https://images.unsplash.com/photo-1467232004584-a241de8bcf5d?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80', url: '#', description: 'Creative showcase for digital artists' }, { title: 'Business Landing Page', image: 'https://images.unsplash.com/photo-1551288049-bebda4e38f71?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80', url: '#', description: 'Professional B2B service presentation' }, { title: 'Blog Platform', image: 'https://images.unsplash.com/photo-1486312338219-ce68e2c6f44d?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80', url: '#', description: 'Content management system for writers' } ]; return (

Website Screenshots

A glimpse of recent web development projects and designs

{websites.map((website, index) => (
{`${website.title}

{website.title}

{website.description}

))}
); }; export default WebsiteScreenshots;