Skip to content

Commit 15b0775

Browse files
committed
3층 표기 추가
1 parent ee0b8ab commit 15b0775

File tree

2 files changed

+8
-7
lines changed

2 files changed

+8
-7
lines changed

src/locale/English/translation.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,8 @@ const EnglishTranslation = {
5959
"결제 일시": "Payment date",
6060
금액: "Price",
6161
변경일: "Updated at",
62-
수원컨벤션센터: "Suwon Convention Center",
62+
"수원컨벤션센터": "Suwon Convention Center",
63+
"수원컨벤션센터 3층": "Suwon Convention Center, 3rd Floor",
6364
"2024.10.26": "October 26, 2024",
6465
"2024.10.27": "October 27, 2024",
6566
"10번째 파이콘 한국에": "Join us",

src/pages/About/howToGetThere.tsx

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
import Page from "components/common/Page";
2-
import React from "react";
3-
import styled from "styled-components";
1+
import Page from "components/common/Page"
2+
import React from "react"
3+
import styled from "styled-components"
44

5-
import useTranslation from "utils/hooks/useTranslation";
5+
import useTranslation from "utils/hooks/useTranslation"
66

77
const KAKAO_MAP_URL = "https://map.kakao.com/link/map/1946823368";
88
const NAVER_MAP_URL = "https://naver.me/Goz5cKSr";
@@ -27,7 +27,7 @@ export const HowToGetThere: React.FC = () => {
2727
React.useEffect(() => {
2828
if (!(window.kakao && window.kakao.maps && kakaoMapRef.current)) return;
2929

30-
const content = `<a href="${KAKAO_MAP_URL}"><div style="width:250px;text-align:center;">${t("수원컨벤션센터")}</div></a>`;
30+
const content = `<a href="${KAKAO_MAP_URL}"><div style="width:250px;text-align:center;">${t("수원컨벤션센터 3층")}</div></a>`;
3131
const position = new window.kakao.maps.LatLng(37.285818093062026, 127.05950558082746);
3232
const map = new window.kakao.maps.Map(kakaoMapRef.current, { center: position, level: 3 });
3333
new kakao.maps.InfoWindow({ content }).open(map, new kakao.maps.Marker({ map, position }));
@@ -45,7 +45,7 @@ export const HowToGetThere: React.FC = () => {
4545
<Page title="장소 안내">
4646
<div style={{ width: "100%", maxWidth: "1200px" }}>
4747
<h1>{t("장소 안내")}</h1>
48-
<h2>{t("수원컨벤션센터")}</h2>
48+
<h2>{t("수원컨벤션센터 3층")}</h2>
4949
<div>
5050
<div style={{ ...flexBoxStyle }}>
5151
<MapSelectTabBtn

0 commit comments

Comments
 (0)