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
517 B
21 lines
517 B
function HistoryPage() { |
|
return ( |
|
<main className="sub-page"> |
|
<section className="sub-visual"> |
|
<div className="inner"> |
|
<h2>연혁</h2> |
|
<p>History</p> |
|
</div> |
|
</section> |
|
|
|
<section className="sub-content-section"> |
|
<div className="inner"> |
|
<h3>주요 실적과 성장 과정</h3> |
|
<p>PAL Networks가 걸어온 길과 주요 성과를 소개합니다.</p> |
|
</div> |
|
</section> |
|
</main> |
|
); |
|
} |
|
|
|
export default HistoryPage;
|
|
|