import { Github, Mail } from "lucide-react" const socials = [ { icon: Mail, label: "Email", href: "mailto:jeff@emmett.com" }, { icon: () => ( ), label: "Bluesky", href: "https://bsky.app/profile/jeffemmett.bsky.social", }, { icon: () => ( ), label: "Medium", href: "https://medium.com/@jeffemmett", }, { icon: Github, label: "Commons Stack", href: "https://commonsstack.org", }, { icon: () => ( ), label: "MycoFi", href: "https://mycofi.earth", }, ] export function ContactSection() { return (

Let's Connect

Interested in token engineering, regenerative economics, or building commons-based systems? Let's collaborate.

{socials.map((social) => { const Icon = social.icon return ( {social.label} ) })}

© 2025 Jeff Emmett. Built with Next.js & TailwindCSS

) }