RMO-Front/src/pages/Contact.tsx

32 lines
878 B
TypeScript
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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