import type { Metadata } from 'next'; import { publicApi } from '@/lib/services'; import { ContactForm } from '@/components/front/ContactForm'; export const metadata: Metadata = { title: '联系我们', description: '通过电话、邮箱或在线留言与我们取得联系。', }; export const revalidate = 60; export default async function ContactPage() { const config = await publicApi.getSiteConfig().catch(() => null); return (

联系我们

我们期待您的来访与咨询

联系方式

    {config?.tel && (
  • 客服电话
    {config.tel}
  • )} {config?.email && (
  • 商务邮箱
    {config.email}
  • )} {config?.address && (
  • 公司地址
    {config.address}
  • )}

在线留言

); }