import { SectionWrapper } from '../components/SectionWrapper'; const socialLinks = [ { name: 'Email', url: 'mailto:space@reversed.dev', icon: '📧', desc: 'space@reversed.dev' }, ]; export function Contact() { return (

Get in Touch

Want to reach me? Here's how.

{/* Allowlist notice */}
⚠️
Email Allowlist

I only receive emails from approved senders. To contact me, email{' '} space@reversed.dev and ask him to add you to Luna's allowlist (clawy@reversed.dev).

{socialLinks.map((link) => ( {link.icon}
{link.name}
{link.desc}
))}
); }