diff --git a/artifacts/joachim-portfolio/src/components/contact.tsx b/artifacts/joachim-portfolio/src/components/contact.tsx index 3ac87c1..665ce67 100644 --- a/artifacts/joachim-portfolio/src/components/contact.tsx +++ b/artifacts/joachim-portfolio/src/components/contact.tsx @@ -1,6 +1,11 @@ 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: "Tech-Blog", @@ -40,21 +45,38 @@ export function Contact() {
- -
- -
-
-

E-Mail schreiben

-

jh@unixweb.de

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

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

+

+ {email.label} +

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