'use client' import { motion } from 'framer-motion' const focusAreas = [ { category: 'Sprachen', items: [ { name: 'Python', detail: 'Haupt-Sprache für KI und Automatisierung' }, { name: 'Rust', detail: 'Für performante Systemtools' }, { name: 'Shell/Bash', detail: 'Tägliches Werkzeug' }, ], }, { category: 'Systeme', items: [ { name: 'Linux', detail: 'Arch, Debian, NixOS' }, { name: 'Self-Hosting', detail: 'Eigene Infrastruktur' }, { name: 'Containers', detail: 'Docker, Podman' }, ], }, { category: 'KI & ML', items: [ { name: 'LLMs', detail: 'GPT, Claude, lokale Modelle' }, { name: 'KI-Tools', detail: 'Cursor, Copilot, Aider' }, { name: 'ML Ops', detail: 'Training, Deployment' }, ], }, { category: 'Interessen', items: [ { name: 'Automatisierung', detail: 'Workflows, Pipelines' }, { name: 'CLI Tools', detail: 'Terminal-first' }, { name: 'Open Source', detail: 'Nutzung & Beteiligung' }, ], }, ] export function FocusSection() { return (
{/* Section Header */} Aktuell

Technologien & Fokus

Die Werkzeuge und Themen, mit denen ich aktuell arbeite. Kein Buzzword-Bingo, sondern tägliche Praxis.

{/* Focus Grid */}
{focusAreas.map((area, areaIndex) => (

{area.category}

    {area.items.map((item, itemIndex) => ( {item.name} {item.detail} ))}
))}
{/* Secondary visual element */}
{['vim', 'git', 'tmux', 'ssh', 'systemd', 'nginx', 'PostgreSQL', 'Redis', 'FastAPI', 'PyTorch', 'Transformers', 'tiktoken'].map((tool) => ( {tool} ))}
) }