-
당신의 아이디어가
-
로켓처럼 성장하도록.
+
+
{firstText}
+
{twoText}
)
}
diff --git a/app/(route)/result/page.tsx b/app/(route)/result/page.tsx
new file mode 100644
index 0000000..285f9c1
--- /dev/null
+++ b/app/(route)/result/page.tsx
@@ -0,0 +1,33 @@
+'use client'
+
+import { useState } from 'react'
+import Result from '../indicators/_components/result'
+import styles from '../onboard/Onboard.module.css'
+import WatchWord from '../onboard/_components/WatchWord'
+
+function Loading() {
+ const [showWatchWord, setShowWatchWord] = useState(true)
+
+ const handleAnimationEnd = () => {
+ setShowWatchWord(false)
+ }
+
+ return (
+ <>
+ {showWatchWord ? (
+
+
+
+ ) : (
+
+ )}
+ >
+ )
+}
+
+export default Loading
diff --git a/app/(route)/result/result.module.css b/app/(route)/result/result.module.css
new file mode 100644
index 0000000..2284acd
--- /dev/null
+++ b/app/(route)/result/result.module.css
@@ -0,0 +1,139 @@
+.background {
+ background: var(--purple-700);
+ display: flex;
+ flex-direction: column;
+ padding: 0 22px;
+ min-height: 100vh;
+ height: auto;
+}
+
+.wordwrap {
+ height: 100vh;
+ display: flex;
+ flex-direction: column;
+ justify-content: center;
+ align-items: center;
+}
+
+.wrap {
+ height: 100%;
+ display: flex;
+ flex-direction: column;
+}
+
+.word {
+ color: #fff;
+ text-align: center;
+ font-size: 2.6rem;
+ font-weight: 800;
+}
+
+.smallword {
+ color: #fff;
+ text-align: center;
+ font-size: 1.35rem;
+ font-weight: 600;
+}
+
+.nonMember {
+ font-size: 0.89rem;
+ color: #fbfbfb;
+}
+
+.largeword {
+ color: #fff;
+ text-align: center;
+ font-size: 4.3rem;
+ font-weight: 700;
+}
+
+.blue {
+ color: #183876;
+}
+
+.topmargin {
+ margin-top: 100px;
+}
+
+.leftmargin {
+ margin-left: 5px;
+ cursor: pointer;
+ color: white;
+ font-size: 0.93rem;
+}
+
+.flex {
+ margin: 13px 0;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+}
+
+.intosignin {
+ display: flex;
+ justify-content: center;
+ align-items: center;
+ width: 100%;
+ height: 55px;
+ gap: 7px;
+ margin-top: 22px;
+ border-radius: 8px;
+ background: #fff;
+ color: #121212;
+
+ font-size: 1.15rem;
+ font-weight: 700;
+ cursor: pointer;
+}
+
+.intosignin:hover {
+ opacity: 0.8;
+ transition: all 0.4s;
+}
+
+.img {
+ width: 430px;
+ height: 430px;
+ margin-top: 48.4px;
+}
+
+@keyframes fadeInUp {
+ 0% {
+ opacity: 0;
+ transform: translateY(20px);
+ }
+ 100% {
+ opacity: 1;
+ transform: translateY(0);
+ }
+}
+
+.word {
+ opacity: 0;
+ animation: fadeInUp 2s ease forwards;
+}
+
+.word:nth-child(1) {
+ animation-delay: 0.5s;
+}
+
+.word:nth-child(2) {
+ animation-delay: 1.5s;
+}
+
+.wrap {
+ opacity: 0;
+ animation: fadeInUp 1.6s ease forwards;
+}
+
+.wrap:nth-child(1) {
+ animation-delay: 0.5s;
+}
+
+.wrap:nth-child(2) {
+ animation-delay: 2s;
+}
+
+.wrap:nth-child(3) {
+ animation-delay: 2mss;
+}
diff --git a/app/(route)/search/page.tsx b/app/(route)/search/page.tsx
index 3f50c66..5ca6c94 100644
--- a/app/(route)/search/page.tsx
+++ b/app/(route)/search/page.tsx
@@ -9,7 +9,10 @@ function Search() {
-
데이터를 모두 불러왔습니다.
+
+
+ 데이터를 모두 불러왔습니다.
+
>
)