import { siteConfig } from '@/lib/config' import CONFIG from '../config' import { SVGLocation } from './svg/SVGLocation' import { SVGEmail } from './svg/SVGEmail' /* eslint-disable react/no-unescaped-entities */ export const Contact = () => { return <> {/* */}
{/* 联系方式左侧文字 */}
{siteConfig('STARTER_CONTACT_TITLE', null, CONFIG)}

{siteConfig('STARTER_CONTACT_TEXT', null, CONFIG)}

{siteConfig('STARTER_CONTACT_LOCATION_TITLE', null, CONFIG)}

{siteConfig('STARTER_CONTACT_LOCATION_TEXT', null, CONFIG)}

{siteConfig('STARTER_CONTACT_EMAIL_TITLE', null, CONFIG)}

{siteConfig('STARTER_CONTACT_EMAIL_TEXT', null, CONFIG)}

{/* 联系方式右侧留言 */}
{/* 自定义的留言表单 、 需要对接接口 */} {/* */} {/* 嵌入外部表单 */}
{/* */} }