Skip to content

Commit 40c5596

Browse files
authored
Merge pull request #25 from pythonkr/feature/health
건강관련 안내 고지 추가
2 parents 9463545 + 87ce9c8 commit 40c5596

File tree

3 files changed

+46
-0
lines changed

3 files changed

+46
-0
lines changed

src/components/Nav/menus.ts

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,13 @@ const Menus: MenuType = {
3131
onClick: ({ setOpenMenu }) => {
3232
setOpenMenu(false)
3333
window.open("https://2023.pycon.kr/coc/purpose", "_blank")
34+
},
35+
},
36+
{
37+
name: "건강 관련 안내",
38+
onClick: ({ setOpenMenu }) => {
39+
setOpenMenu(false)
40+
window.open("/about/health", "_blank")
3441
}
3542
},
3643
// {

src/pages/About/health.tsx

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
import Page from "components/common/Page";
2+
import React from "react";
3+
import useTranslation from "utils/hooks/useTranslation";
4+
5+
const Health = () => {
6+
const t = useTranslation();
7+
return (
8+
<Page>
9+
<h1>{t("파이콘 한국 건강관련 안내")}</h1>
10+
<p>
11+
{t(
12+
"파이콘 한국에 참여해주신 모든 분들을 위해 안내 말씀드립니다."
13+
)}
14+
</p>
15+
<h2>코로나 19관련 안내</h2>
16+
<p>
17+
{t(
18+
"파이콘 한국 2024는 한국 정부의 코로나19 정책을 준수합니다."
19+
)}
20+
<br />
21+
{t(
22+
" 코로나19 주요 증상(기침, 발열, 두통 등)이 호전된 후 24시간이 지나지 않은 참가자는 행사에 참가하지 않을 것을 권고합니다."
23+
)}
24+
<br />
25+
{t(
26+
"코로나19로 인해 행사에 참가하지 못한 경우 티켓은 환불해 드립니다.(진단서 제출 필요) 행사 참가자들은 마스크를 착용할 것을 권장합니다."
27+
)}
28+
<br />
29+
{t(
30+
"행사 참가자들은 마스크를 착용할 것을 권장합니다."
31+
)}
32+
</p>
33+
</Page>
34+
);
35+
};
36+
37+
export default Health;

src/routes.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ import { SessionDetailPage } from "pages/Session/detail"
1414
import { SessionListPage } from "pages/Session/list"
1515
import SponsorPage from "pages/Sponsor"
1616
import TermsOfService from "pages/TermsOfService"
17+
import Health from "./pages/About/health";
1718

1819
const Router = () => {
1920
return (
@@ -23,6 +24,7 @@ const Router = () => {
2324
<Route path="/" element={<Home />} />
2425
<Route path="/about/pyconkr2024" element={<Pyconkr2024 />} />
2526
<Route path="/about/coc" element={<Coc />} />
27+
<Route path="/about/health" element={<Health />} />
2628
<Route path="/sponsoring/sponsor/prospectus" element={<SponsorPage />} />
2729
<Route path="/session" element={<SessionListPage />} />
2830
<Route path="/session/:code" element={<SessionDetailPage />} />

0 commit comments

Comments
 (0)