"use client"; import { useState, useEffect } from 'react'; import { motion } from 'framer-motion'; import { Code, Database, Cloud, Smartphone, Globe, Zap, Brain, Rocket } from 'lucide-react'; const About = () => { const [mounted, setMounted] = useState(false); useEffect(() => { setMounted(true); }, []); const skills = [ { category: 'Frontend', icon: Code, technologies: ['React', 'Next.js', 'TypeScript', 'Tailwind CSS', 'Framer Motion'], color: 'from-blue-500 to-cyan-500' }, { category: 'Backend', icon: Database, technologies: ['Node.js', 'PostgreSQL', 'Prisma', 'REST APIs', 'GraphQL'], color: 'from-purple-500 to-pink-500' }, { category: 'DevOps', icon: Cloud, technologies: ['Docker', 'CI/CD', 'Nginx', 'Redis', 'AWS'], color: 'from-green-500 to-emerald-500' }, { category: 'Mobile', icon: Smartphone, technologies: ['React Native', 'Expo', 'iOS', 'Android'], color: 'from-orange-500 to-red-500' }, ]; const values = [ { icon: Brain, title: 'Problem Solving', description: 'I love tackling complex challenges and finding elegant solutions.' }, { icon: Zap, title: 'Performance', description: 'Building fast, efficient applications that scale with your needs.' }, { icon: Rocket, title: 'Innovation', description: 'Always exploring new technologies and best practices.' }, { icon: Globe, title: 'User Experience', description: 'Creating intuitive interfaces that users love to interact with.' }, ]; if (!mounted) { return null; } return (
{/* Section Header */}

About Me

I'm a passionate software engineer with a love for creating beautiful, functional applications. I enjoy working with modern technologies and turning ideas into reality.

{/* About Content */}

My Journey

I'm a student and software engineer based in Osnabrück, Germany. My passion for technology started early, and I've been building applications ever since.

I specialize in full-stack development, with a focus on creating modern, performant web applications. I'm always learning new technologies and improving my skills.

When I'm not coding, I enjoy exploring new technologies, contributing to open-source projects, and sharing knowledge with the developer community.

What I Do

{values.map((value, index) => (

{value.title}

{value.description}

))}
{/* Skills Section */}

Skills & Technologies

{skills.map((skill, index) => (

{skill.category}

{skill.technologies.map((tech) => (
{tech}
))}
))}
); }; export default About;