32 lines
878 B
TypeScript
32 lines
878 B
TypeScript
import PageContainer from '../components/PageContainer'
|
||
import PageHeader from '../components/PageHeader'
|
||
import './Contact.css'
|
||
|
||
function Contact() {
|
||
return (
|
||
<PageContainer>
|
||
<div className="contact-page">
|
||
<PageHeader
|
||
title="联系我们"
|
||
description="获取RMO最新资讯,第一时间了解风险管理动态"
|
||
/>
|
||
<div className="page-body">
|
||
<section className="section">
|
||
<div className="container">
|
||
<div className="contact-grid">
|
||
<div className="contact-card">
|
||
<h3>客户服务中心</h3>
|
||
<p>邮箱:rmo@vdano.com</p>
|
||
<p>电话:4009-606-520</p>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</section>
|
||
</div>
|
||
</div>
|
||
</PageContainer>
|
||
)
|
||
}
|
||
|
||
export default Contact
|