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 && ( + <> +
+ 결과는 추후 입력하신 이메일로 공유드릴게요. + + )} +

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