import { Section } from "../components/Section"; const skills = { "Front-end": [ "HTML", "CSS", "JavaScript", "TypeScript", "React", "Next.js", "Tailwind CSS", "Django", "Flask", ], "Back-end": ["Node.js", "Express.js", "FastAPI"], API: [ "REST", "Postman/Hoppscotch", // "Swagger", "mitmproxy", "HTTP Toolkit", ], Collaboration: ["Git", "GitHub"], Deployment: [ "Docker", "Docker-compose", "Vercel", "GitHub Actions", "Cloudflare Workers & Pages", ], Tools: ["Figma", "Adobe Photoshop", "Cloudflare DNS"], }; export const Skills = () => { return (

Skills

{Object.entries(skills).map(([category, skills], index) => { if (index < 3) return (

{category}

{skills.map((skill) => (

{skill}

))}
); })}
{Object.entries(skills).map(([category, skills], index) => { if (index > 2) return (

{category}

{skills.map((skill) => (

{skill}

))}
); })}
); };