import React from 'react'; import { Briefcase, Code, Database, Palette, Smartphone, Zap } from 'lucide-react'; const Skills: React.FC = () => { const experience = [ { title: 'Senior Full-Stack Developer', company: 'Tech Innovations Inc.', period: '2022 - Present', description: 'Leading development of scalable web applications using React, Node.js, and cloud technologies.' }, { title: 'Frontend Developer', company: 'Digital Solutions Ltd.', period: '2020 - 2022', description: 'Built responsive user interfaces and improved performance for e-commerce platforms.' }, { title: 'Junior Developer', company: 'StartupXYZ', period: '2019 - 2020', description: 'Developed mobile applications and contributed to backend API development.' } ]; const specificSkills = [ { name: 'React', level: 95, icon: Code }, { name: 'TypeScript', level: 90, icon: Code }, { name: 'Node.js', level: 85, icon: Database }, { name: 'Python', level: 80, icon: Code }, { name: 'UI/UX Design', level: 75, icon: Palette }, { name: 'Mobile Development', level: 70, icon: Smartphone } ]; return (

Experience & Skills

A comprehensive overview of my professional journey and technical expertise

{/* Experience Section */}

Experience

{experience.map((exp, index) => (

{exp.title}

{exp.company} • {exp.period}

{exp.description}

))}
{/* Specific Skills Section */}

Specific Skills

{specificSkills.map((skill, index) => { const IconComponent = skill.icon; return (
{skill.name}
{skill.level}%
); })}
); }; export default Skills;