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

{siteConfig('STARTER_CONTACT_TEXT')}

{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')}

{url && url !== '' && ( <> {/* 联系方式右侧留言 */}
{/* 自定义的留言表单 、 需要对接接口 */} {/* */} {/* 嵌入外部表单 */}
)}
{/* */} ) }