import Link from "next/link" import ContactForm from "@/components/ContactForm" import { CONTACT_CHANNELS, SITE_BRAND } from "@/lib/site-content" const HERO_CHANNELS = [ { ...CONTACT_CHANNELS[0], headline: "申请产品演示", icon: "mail", }, { ...CONTACT_CHANNELS[1], headline: "私有化与采购", icon: "phone", }, ] as const export default function HeroSection() { return (
Contact

和 {SITE_BRAND} 团队聊聊你的真实场景

无论你想申请试用、评估企业方案,还是讨论 Skills / 插件生态,都建议先把团队背景、 代码栈、交付约束和预期目标告诉我们,后续沟通会更高效。

{HERO_CHANNELS.map((channel) => { const isExternal = channel.href.startsWith("http") const content = ( <>
{channel.icon === "mail" ? ( ) : ( )}
{channel.title}
{channel.headline}

{channel.description}

) return (
{isExternal ? ( {content} ) : ( {content} )}
) })}
) }