From ba6b1a8379063d86e1fe47e896475f1b42f0a0c1 Mon Sep 17 00:00:00 2001 From: Shineast Date: Sun, 8 Feb 2026 08:41:32 +0900 Subject: [PATCH 1/5] =?UTF-8?q?feat:=20=EC=A7=80=ED=95=98=EC=B2=A0=208?= =?UTF-8?q?=ED=98=B8=EC=84=A0=20=EC=97=B0=EC=9E=A5=20=EB=8D=B0=EC=9D=B4?= =?UTF-8?q?=ED=84=B0=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- database/stations_info.json | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/database/stations_info.json b/database/stations_info.json index 5542848..2df552d 100644 --- a/database/stations_info.json +++ b/database/stations_info.json @@ -2129,6 +2129,30 @@ "latitude": 37.5062285, "longitude": 126.6762813 }, + { + "line": "8호선", + "name": "암사역사공원", + "latitude": 37.557167, + "longitude": 127.137556 + }, + { + "line": "8호선", + "name": "장자호수공원", + "latitude": 37.5876578, + "longitude": 127.1379073 + }, + { + "line": "8호선", + "name": "동구릉", + "latitude": 37.611056, + "longitude": 127.138004 + }, + { + "line": "8호선", + "name": "다산", + "latitude": 37.624268, + "longitude": 127.149809 + }, { "line": "8호선", "name": "암사역", From 24043bc1749bb5573bb03cc25cd7263bea682c14 Mon Sep 17 00:00:00 2001 From: Shineast Date: Sun, 8 Feb 2026 13:39:40 +0900 Subject: [PATCH 2/5] =?UTF-8?q?feat:=20=EC=9D=B4=EC=9A=A9=EC=95=BD?= =?UTF-8?q?=EA=B4=80=20/=20=EA=B0=9C=EC=9D=B8=EC=A0=95=EB=B3=B4=EC=B2=98?= =?UTF-8?q?=EB=A6=AC=EB=B0=A9=EC=B9=A8=20=EB=82=B4=EC=9A=A9=20=EC=B6=94?= =?UTF-8?q?=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/layout.tsx | 4 +- components/footer.tsx | 16 +- components/modal/globalModal.tsx | 15 +- components/modal/policyModal.tsx | 319 ++++++++++++++++++++++++ components/modal/termsModal.tsx | 414 +++++++++++++++++++++++++++++++ store/useModalStore.ts | 2 +- 6 files changed, 762 insertions(+), 8 deletions(-) create mode 100644 components/modal/policyModal.tsx create mode 100644 components/modal/termsModal.tsx diff --git a/app/layout.tsx b/app/layout.tsx index b0bdf7e..8cfc97c 100644 --- a/app/layout.tsx +++ b/app/layout.tsx @@ -25,9 +25,9 @@ const pretendard = localFont({ export const metadata: Metadata = { metadataBase: new URL(process.env.NEXT_PUBLIC_BASE_URL || 'https://www.mingling.kr'), - title: '밍글링 - 어디서 만날지, 고민 시간을 줄여드려요', + title: '밍글링 - 중간 위치로 만날 곳 정하기', description: - '퇴근 후 모임, 주말 약속까지. 서울 어디서든 모두가 비슷하게 도착하는 마법의 장소를 찾아드려요.', + '퇴근 후 모임, 주말 약속까지! 서울 어디서든 모두가 비슷하게 도착하는 마법의 장소를 찾아드려요.', }; export default function RootLayout({ diff --git a/components/footer.tsx b/components/footer.tsx index f467239..11dd685 100644 --- a/components/footer.tsx +++ b/components/footer.tsx @@ -16,12 +16,20 @@ const Footer = () => {