import { Mail, Github, Twitter, Linkedin } from "lucide-react" import Link from "next/link" const socialLinks = [ { icon: Github, label: "GitHub", href: "https://github.com/JulianRadix" }, { icon: Twitter, label: "Twitter", href: "https://cdn.prod.website-files.com/65ba70a5bb6f912baf0094a3/692588c50754ada9941bfd11_glenncatteeuw.com_404(1440).webp" }, { icon: Linkedin, label: "LinkedIn", href: "https://linkedin.com/in/JulianRadix" }, ] export function Contact() { return (
{/* Section label */}

Contact

{/* Content */}

Want to discuss a project, ask a technical question, or just say hello?

I'm always open to interesting conversations about backend systems, infrastructure, or building developer tools.

{/* Email */} {/* Social links */}

Elsewhere

{socialLinks.map((link) => ( {link.label} ))}
{/* Terminal-style response time */}
$ response_time
{">"} Usually within 24-48 hours
) }