당신의 아이디어가
-로켓처럼 성장하도록.
+{firstText}
+{twoText}
From 7495a13a94dca43b8189b916e1acef0a13679086 Mon Sep 17 00:00:00 2001 From: hanseulhee <3021062@gmail.com> Date: Sun, 7 Apr 2024 13:19:46 +0900 Subject: [PATCH] =?UTF-8?q?[#21]=20=ED=88=AC=EC=9E=90=20=EC=A7=80=ED=91=9C?= =?UTF-8?q?=20=ED=8E=98=EC=9D=B4=EC=A7=80,=20=EB=A1=9C=EB=94=A9=EC=A4=91?= =?UTF-8?q?=20=ED=8E=98=EC=9D=B4=EC=A7=80=20=EA=B0=9C=EB=B0=9C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../_components/form/form.module.css | 37 +++++ .../indicators/_components/form/index.tsx | 24 +++ .../indicators/_components/result/index.tsx | 21 +++ .../_components/result/result.module.css | 6 + app/(route)/indicators/indicators.module.css | 52 +++++++ app/(route)/indicators/page.tsx | 39 +++++ app/(route)/list/_components/nav/index.tsx | 2 +- app/(route)/main/page.module.css | 12 ++ app/(route)/main/page.tsx | 4 +- app/(route)/onboard/Onboard.module.css | 2 +- app/(route)/onboard/_components/WatchWord.tsx | 37 ++++- app/(route)/result/page.tsx | 33 +++++ app/(route)/result/result.module.css | 139 ++++++++++++++++++ app/(route)/search/page.tsx | 5 +- 14 files changed, 405 insertions(+), 8 deletions(-) create mode 100644 app/(route)/indicators/_components/form/form.module.css create mode 100644 app/(route)/indicators/_components/form/index.tsx create mode 100644 app/(route)/indicators/_components/result/index.tsx create mode 100644 app/(route)/indicators/_components/result/result.module.css create mode 100644 app/(route)/indicators/indicators.module.css create mode 100644 app/(route)/indicators/page.tsx create mode 100644 app/(route)/result/page.tsx create mode 100644 app/(route)/result/result.module.css diff --git a/app/(route)/indicators/_components/form/form.module.css b/app/(route)/indicators/_components/form/form.module.css new file mode 100644 index 0000000..335e174 --- /dev/null +++ b/app/(route)/indicators/_components/form/form.module.css @@ -0,0 +1,37 @@ +.wrapper { + display: flex; + flex-direction: column; + gap: 2px; +} + +.title { + font-size: 1.2rem; + font-weight: 700; +} + +.subTitle { + font-size: 0.7rem; + font-weight: 300; + margin-bottom: 10px; +} + +.inputWrapper { + display: flex; + align-items: center; + width: 100%; + height: auto; + border-radius: 15px; + padding: 14px 20px; + border: 1px solid #efefef; +} + +.input { + all: unset; + font-size: 0.83rem; +} + +.error { + font-size: 0.6rem; + color: #FF453A; + margin-top: 4px; +} diff --git a/app/(route)/indicators/_components/form/index.tsx b/app/(route)/indicators/_components/form/index.tsx new file mode 100644 index 0000000..826beda --- /dev/null +++ b/app/(route)/indicators/_components/form/index.tsx @@ -0,0 +1,24 @@ +import S from './form.module.css' + +interface Props { + title: string + subTitle?: string +} + +function Form({ + title, + subTitle = '해당 항목의 수치는 어떻게 되나요?', +}: Props) { + return ( +
{subTitle}
+당신의 아이디어가
-로켓처럼 성장하도록.
+{firstText}
+{twoText}