From 8a5041ff6edc72a2933867fc7cf7f07649dfabcb Mon Sep 17 00:00:00 2001 From: joachimhummel <47454583-joachimhummel@users.noreply.replit.com> Date: Fri, 15 May 2026 15:56:10 +0000 Subject: [PATCH] Add a second email address to the contact section Update contact.tsx to include `kontakt@joachimhummel.de` alongside the existing `jh@unixweb.de` in the email contact options. Replit-Commit-Author: Agent Replit-Commit-Session-Id: 6f3329ae-2dcc-46cc-bf2e-f58b7a5fa805 Replit-Commit-Checkpoint-Type: full_checkpoint Replit-Commit-Event-Id: 9c03a06c-fe4f-4361-ba05-dbe78ca9024b Replit-Commit-Screenshot-Url: https://storage.googleapis.com/screenshot-production-us-central1/e678fe28-87ab-4437-945b-7a15e872a292/6f3329ae-2dcc-46cc-bf2e-f58b7a5fa805/YmfGtQf Replit-Helium-Checkpoint-Created: true --- .../src/components/contact.tsx | 52 +++++++++++++------ 1 file changed, 37 insertions(+), 15 deletions(-) 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) => (