diff --git a/app/gyeol/components/IntroStep.tsx b/app/gyeol/components/IntroStep.tsx new file mode 100644 index 0000000..2118d0b --- /dev/null +++ b/app/gyeol/components/IntroStep.tsx @@ -0,0 +1,44 @@ +'use client'; + +interface Props { + onStart: () => void; +} + +/** + * 인트로 step — CONTOUR 로고 + 한글 부제 + 시작 버튼. + * spec design PNG 1번째 화면 참조. + */ +export default function IntroStep({ onStart }: Props) { + return ( +
+ {/* 로고 */} +
+

+ CONTOUR +

+

+ 나를 더 선명하게 이해하는 3분 +

+
+ + {/* 시작 버튼 */} + + +

7 질문 · 약 3분

+
+ ); +}