Skip to content

Commit 1018f0b

Browse files
committed
Merge branch 'develop'
2 parents 8ea0cf6 + 95a2c87 commit 1018f0b

File tree

6 files changed

+59
-2
lines changed

6 files changed

+59
-2
lines changed
126 KB
Loading
1.15 MB
Loading

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/organizingTeam.tsx

Lines changed: 25 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,18 @@ const OrganizingTeam = () => {
2525
imageFileName: "권혁민.jpg",
2626
},
2727
{ name: "박성흠" },
28-
{ name: "김순태" },
28+
{
29+
name: "김순태",
30+
comment: (
31+
<>
32+
파이썬으로 개발합니다.{" "}
33+
<a href="https://www.linkedin.com/in/kst6294/" target="_blank" rel="noreferrer">
34+
https://www.linkedin.com/in/kst6294/
35+
</a>
36+
</>
37+
),
38+
imageFileName: "김순태.jpeg",
39+
},
2940
{
3041
name: "김강민",
3142
displayName: "김강민/KLOU",
@@ -94,7 +105,19 @@ const OrganizingTeam = () => {
94105
},
95106
{ name: "김민정" },
96107
{ name: "강나영" },
97-
{ name: "윤준기" },
108+
{
109+
name: "윤준기",
110+
comment: (
111+
<>
112+
안녕하세요, 23년도에는 파이콘 스피커로
113+
<br />
114+
24년도에는 파준위로 활동하고 있는 윤준기 입니다.
115+
<br />
116+
개발이나 다양한 주제로 이야기 하는 것을 좋아합니다 :)
117+
</>
118+
),
119+
imageFileName: "윤준기.jpeg",
120+
},
98121
{
99122
name: "송지헌",
100123
displayName: "송지헌 / Honey",

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)