Skip to content

Commit 95a2c87

Browse files
committed
Add volunteer page
1 parent 94fb47e commit 95a2c87

File tree

3 files changed

+34
-0
lines changed

3 files changed

+34
-0
lines changed

src/components/Nav/menus.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,10 @@ const Menus: MenuType = {
3838
name: "파이콘 한국 준비위원회",
3939
path: "/about/organizing-team",
4040
},
41+
{
42+
name: "자원봉사자",
43+
path: "/about/volunteer",
44+
},
4145
{
4246
name: "건강 관련 안내",
4347
path: "/about/health",

src/pages/About/volunteer.tsx

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
import Page from "components/common/Page";
2+
import React from "react";
3+
4+
import useTranslation from "utils/hooks/useTranslation";
5+
6+
const Volunteer = () => {
7+
const t = useTranslation();
8+
9+
return (
10+
<Page>
11+
<h1>{t("자원봉사자")}</h1>
12+
<p>
13+
{t(
14+
"파이콘 한국 2024에서 행사 진행을 위해 기여해주신 분들입니다. 파이콘 한국에 기여해주셔서 감사합니다."
15+
)}
16+
<br />
17+
{t("(가나다순)")}
18+
</p>
19+
<p>
20+
{["윤우섭", "노관옥", "주환석", "차보경", "주예은", "조준형", "김혜린", "김준우"]
21+
.sort()
22+
.join(", ")}
23+
</p>
24+
</Page>
25+
);
26+
};
27+
28+
export default Volunteer;

src/routes.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ import PosterSession from "pages/PosterSession";
2222
import { HowToGetThere } from "pages/About/howToGetThere";
2323
import OrganizingTeam from "pages/About/organizingTeam";
2424
import FinancialAid from "pages/FinancialAid";
25+
import Volunteer from "pages/About/volunteer";
2526

2627
const Router = () => {
2728
return (
@@ -34,6 +35,7 @@ const Router = () => {
3435
<Route path="/about/health" element={<Health />} />
3536
<Route path="/about/place" element={<HowToGetThere />} />
3637
<Route path="/about/organizing-team" element={<OrganizingTeam />} />
38+
<Route path="/about/volunteer" element={<Volunteer />} />
3739
<Route path="/poster-session" element={<PosterSession />} />
3840
<Route path="/fa" element={<FinancialAid />} />
3941
<Route path="/sponsoring/sponsor/prospectus" element={<SponsorPage />} />

0 commit comments

Comments
 (0)