import { motion } from "framer-motion"; import { Mail, ExternalLink, ArrowRight } from "lucide-react"; const emailAddresses = [ { address: "jh@unixweb.de", label: "jh@unixweb.de" }, { address: "kontakt@joachimhummel.de", label: "kontakt@joachimhummel.de" }, ]; const links = [ { label: "n8n Automation", url: "https://n8n.io/creators/jhummel/", desc: "Workflows & Automatisierungen auf n8n.io", }, { label: "Website", url: "https://joachimhummel.de", desc: "joachimhummel.de", }, ]; export function Contact() { return (

Kontakt

Bereit für das nächste Projekt?

Ob Infrastruktur-Modernisierung, KI-Automation oder technische Dokumentation — ich freue mich auf Ihre Anfrage.

{emailAddresses.map((email, i) => (

{i === 0 ? "Hauptadresse" : "Alternativ"}

{email.label}

))}
{links.map((link) => (

{link.label}

{link.desc}

))}
Joachim Hummel — Senior IT-Consultant · München
); }