You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
568 B
21 lines
568 B
function PartnersPage() { |
|
return ( |
|
<main className="sub-page"> |
|
<section className="sub-visual"> |
|
<div className="inner"> |
|
<h2>고객 및 협력사</h2> |
|
<p>Clients & Partners</p> |
|
</div> |
|
</section> |
|
|
|
<section className="sub-content-section"> |
|
<div className="inner"> |
|
<h3>주요 고객과 협력 네트워크</h3> |
|
<p>다양한 산업의 고객사 및 협력사와 함께 성장하고 있습니다.</p> |
|
</div> |
|
</section> |
|
</main> |
|
); |
|
} |
|
|
|
export default PartnersPage;
|
|
|