import { ExternalLink, Mail, Zap } from "lucide-react" import GithubIcon from "../components/GithubIcon" import { FOUNDER, LINKS } from "../constants" const CONTACTS = [ { icon: GithubIcon, label: "GitHub", value: "MananBabbar07/ClearVoice", href: LINKS.github, desc: "Report issues, contribute, or explore the source code.", }, { icon: Zap, label: "API", value: "Hugging Face Spaces", href: LINKS.api, desc: "Direct access to the verification endpoint for integrations.", }, { icon: ExternalLink, label: "Live demo", value: "clear-voice-five.vercel.app", href: LINKS.demo, desc: "Try the deployed version of ClearVoice in your browser.", }, { icon: Mail, label: "Reach out", value: FOUNDER.name, href: FOUNDER.github, desc: "Open a GitHub issue or connect via profile for questions and feedback.", }, ] export default function ContactSection() { return (

Contact

Get in touch

Questions, feedback, or collaboration — pick whichever channel works best for you.

{CONTACTS.map(({ icon: Icon, label, value, href, desc }) => (

{label}

{value}

{desc}

))}
) }