|
1 | | -import Navbar from "@/views/splash/components/Navbar"; |
2 | | - |
| 1 | +// style |
3 | 2 | import "@/views/splash/style/splash.sass"; |
4 | 3 | import "@/views/components/style/modal.sass"; |
| 4 | +import splashIcon from "@/assets/imgs/common/splashIcon.svg"; |
| 5 | +import mainImage from "@/assets/imgs/common/splash_main_img.svg"; |
| 6 | +import solarSystem from "@/assets/imgs/common/splash_solarSystem.svg"; |
| 7 | +import keyword1 from "@/assets/imgs/common/splash_keyword1.svg"; |
| 8 | +import keyword2 from "@/assets/imgs/common/splash_keyword2.svg"; |
| 9 | +import keyword3 from "@/assets/imgs/common/splash_keyword3.svg"; |
| 10 | +import keyword4 from "@/assets/imgs/common/splash_keyword4.svg"; |
| 11 | +import keyword5 from "@/assets/imgs/common/splash_keyword5.svg"; |
5 | 12 |
|
| 13 | +// library |
6 | 14 | import { useState, useEffect, useRef } from "react"; |
7 | 15 |
|
| 16 | +// component |
| 17 | +import Navbar from "@/views/splash/components/Navbar"; |
8 | 18 | import LoginModal from "@/views/splash/components/LoginModal"; |
9 | 19 | import SignupModal from "@/views/splash/components/SignupModal"; |
10 | 20 | import AgreeModal from "@/views/splash/components/AgreeModal"; |
11 | 21 | import PasswordResetModal from "@/views/splash/components/PasswordResetModal"; |
12 | | -import { getTest } from "@/api/common/common"; |
13 | 22 |
|
14 | | -import splashIcon from "@/assets/imgs/common/splashIcon.svg"; |
15 | | -import mainImage from "@/assets/imgs/common/mainImage.svg"; |
16 | | -import solarSystem from "@/assets/imgs/common/solarSystem.svg"; |
| 23 | +// api |
| 24 | +import { getTest } from "@/api/common/common"; |
17 | 25 |
|
18 | 26 | const SplashPage = () => { |
19 | 27 | type ModalType = "login" | "signup" | "agree" | "resetPw" | null; |
@@ -133,8 +141,14 @@ const SplashPage = () => { |
133 | 141 | <img |
134 | 142 | src={solarSystem} |
135 | 143 | alt="solarSystem" |
136 | | - className="spacial-img-img" |
| 144 | + className="spacial-solar-img" |
137 | 145 | /> |
| 146 | + |
| 147 | + <img src={keyword1} alt="keyword1" className="keyword1" /> |
| 148 | + <img src={keyword2} alt="keyword2" className="keyword2" /> |
| 149 | + <img src={keyword3} alt="keyword3" className="keyword3" /> |
| 150 | + <img src={keyword4} alt="keyword4" className="keyword4" /> |
| 151 | + <img src={keyword5} alt="keyword5" className="keyword5" /> |
138 | 152 | </div> |
139 | 153 | </div> |
140 | 154 | </div> |
|
0 commit comments