RMO-Front/src/pages/AboutOverview.tsx

77 lines
3.0 KiB
TypeScript
Raw Permalink Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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 './AboutOverview.css'
function AboutOverview() {
return (
<PageContainer>
<div className="about-overview">
<PageHeader
title="RMO概述"
description="生命科学风险管理平台"
/>
<div className="page-body">
<section className="section">
<div className="container">
<h2 className="section-title">RMO</h2>
<div className="content-grid">
<div className="content-card">
<h3>使</h3>
<p>
RMO致力于为生命科学行业提供全方位的风险管理解决方案
</p>
</div>
<div className="content-card">
<h3></h3>
<p>
</p>
</div>
<div className="content-card">
<h3></h3>
<ul>
<li></li>
<li></li>
<li></li>
<li></li>
</ul>
</div>
</div>
</div>
</section>
<section className="section">
<div className="container">
<h2 className="section-title"></h2>
<div className="services-grid">
<div className="service-item">
<div className="service-icon">📊</div>
<h3></h3>
<p></p>
</div>
<div className="service-item">
<div className="service-icon">🛡</div>
<h3></h3>
<p></p>
</div>
<div className="service-item">
<div className="service-icon">💼</div>
<h3></h3>
<p></p>
</div>
<div className="service-item">
<div className="service-icon">📚</div>
<h3></h3>
<p></p>
</div>
</div>
</div>
</section>
</div>
</div>
</PageContainer>
)
}
export default AboutOverview