import { useState } from 'react'; import { ChevronDown, ChevronUp, Mail, Phone, MapPin, Github, Linkedin, Download, ExternalLink } from 'lucide-react'; import { motion, AnimatePresence } from 'framer-motion'; export default function CV() { const [expandedSection, setExpandedSection] = useState('experience'); const [isDarkMode, setIsDarkMode] = useState(false); const toggleSection = (section) => { if (expandedSection === section) { setExpandedSection(null); } else { setExpandedSection(section); } }; const Section = ({ id, title, children }) => (
toggleSection(id)} >

{title}

{expandedSection === id && (
{children}
)}
); return (
{/* Controls */}
{/* Main Card */} {/* Header Section */}

Your Name

Professional Title

{[ { icon: , text: "your.email@example.com" }, { icon: , text: "+1 234 567 8900" }, { icon: , text: "City, Country" }, ].map((item, index) => ( {item.icon} {item.text} ))}
{[ { icon: , text: "GitHub" }, { icon: , text: "LinkedIn" }, ].map((item, index) => ( {item.icon} {item.text} ))}
{/* Summary Section */}

Professional Summary

A brief professional summary highlighting your key strengths, experience, and career objectives. Customize this section to showcase your unique value proposition and what makes you stand out.

{/* Experience Section */}
{[ { title: "Senior Position", company: "Company Name", period: "2020 - Present", achievements: [ "Led development of key product features resulting in 40% user growth", "Managed a team of 5 developers and improved sprint velocity by 25%", "Implemented CI/CD pipeline reducing deployment time by 60%" ] }, { title: "Previous Position", company: "Previous Company", period: "2018 - 2020", achievements: [ "Developed and maintained multiple client-facing applications", "Reduced system downtime by 75% through infrastructure improvements", "Mentored junior developers and led technical training sessions" ] } ].map((job, index) => (

{job.title}

{job.company} • {job.period}

    {job.achievements.map((achievement, i) => (
  • • {achievement}
  • ))}
))}
{/* Education Section */}

Master of Science in Computer Science

University Name • 2018

Specialized in Artificial Intelligence and Machine Learning. Graduated with honors. Research focus on Natural Language Processing.

{/* Skills Section */}
{[ "JavaScript", "React", "Node.js", "Python", "AWS", "Docker", "GraphQL", "TypeScript", "Git", "Agile" ].map((skill, index) => ( {skill} ))}
); }