From 82fa3b3489310beef2a8d66841abaf04c7f9544e Mon Sep 17 00:00:00 2001 From: gahusb Date: Sat, 16 May 2026 05:30:05 +0900 Subject: [PATCH] =?UTF-8?q?feat(gyeol):=20ThanksStep=20=E2=80=94=20?= =?UTF-8?q?=EA=B0=90=EC=82=AC=20=EB=A9=94=EC=8B=9C=EC=A7=80=20+=20?= =?UTF-8?q?=EC=82=AC=EC=9D=B4=ED=8A=B8=20=EB=8F=8C=EC=95=84=EA=B0=80?= =?UTF-8?q?=EA=B8=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 이메일 입력 여부에 따라 "결과 추후 공유" 안내 분기. Co-Authored-By: Claude Opus 4.7 (1M context) --- app/gyeol/components/ThanksStep.tsx | 38 +++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 app/gyeol/components/ThanksStep.tsx diff --git a/app/gyeol/components/ThanksStep.tsx b/app/gyeol/components/ThanksStep.tsx new file mode 100644 index 0000000..bce4507 --- /dev/null +++ b/app/gyeol/components/ThanksStep.tsx @@ -0,0 +1,38 @@ +'use client'; + +import Link from 'next/link'; + +interface Props { + emailEntered: boolean; +} + +export default function ThanksStep({ emailEntered }: Props) { + return ( +
+
+

+ 감사합니다. +

+

+ 답변이 큰 도움이 됐어요. + {emailEntered && ( + <> +
+ 결과는 추후 입력하신 이메일로 공유드릴게요. + + )} +

+
+ + + 쟁승메이드 홈으로 → + +
+ ); +}