File tree Expand file tree Collapse file tree 3 files changed +46
-0
lines changed Expand file tree Collapse file tree 3 files changed +46
-0
lines changed Original file line number Diff line number Diff line change @@ -31,6 +31,13 @@ const Menus: MenuType = {
31
31
onClick : ( { setOpenMenu } ) => {
32
32
setOpenMenu ( false )
33
33
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" )
34
41
}
35
42
} ,
36
43
// {
Original file line number Diff line number Diff line change
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 ;
Original file line number Diff line number Diff line change @@ -14,6 +14,7 @@ import { SessionDetailPage } from "pages/Session/detail"
14
14
import { SessionListPage } from "pages/Session/list"
15
15
import SponsorPage from "pages/Sponsor"
16
16
import TermsOfService from "pages/TermsOfService"
17
+ import Health from "./pages/About/health" ;
17
18
18
19
const Router = ( ) => {
19
20
return (
@@ -23,6 +24,7 @@ const Router = () => {
23
24
< Route path = "/" element = { < Home /> } />
24
25
< Route path = "/about/pyconkr2024" element = { < Pyconkr2024 /> } />
25
26
< Route path = "/about/coc" element = { < Coc /> } />
27
+ < Route path = "/about/health" element = { < Health /> } />
26
28
< Route path = "/sponsoring/sponsor/prospectus" element = { < SponsorPage /> } />
27
29
< Route path = "/session" element = { < SessionListPage /> } />
28
30
< Route path = "/session/:code" element = { < SessionDetailPage /> } />
You can’t perform that action at this time.
0 commit comments