-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
[#5]์จ๋ณด๋ฉํ์ด์ง ui ๊ตฌํ ๋ฐ ์ ๋๋ฉ์ด์ ๊ตฌํ
- Loading branch information
Showing
10 changed files
with
301 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,135 @@ | ||
.background { | ||
background: #6C76F4; | ||
width: 100%; | ||
height: 100%; | ||
|
||
overflow: hidden; | ||
} | ||
|
||
.wordwrap { | ||
height: 100%; | ||
display: flex; | ||
flex-direction: column; | ||
justify-content: center; | ||
} | ||
.wrap{ | ||
height: 100%; | ||
display: flex; | ||
flex-direction: column; | ||
align-items: center; | ||
|
||
} | ||
|
||
.word { | ||
color: #FFF; | ||
text-align: center; | ||
font-size: 36px; | ||
font-style: normal; | ||
font-weight: 600; | ||
line-height: normal; | ||
} | ||
|
||
.smallword{ | ||
color: #FFF; | ||
text-align: center; | ||
font-size: 20px; | ||
font-style: normal; | ||
font-weight: 600; | ||
line-height: normal; | ||
} | ||
|
||
.largeword { | ||
color: #FFF; | ||
text-align: center; | ||
font-size: 64px; | ||
font-style: normal; | ||
font-weight: 800; | ||
line-height: normal; | ||
} | ||
|
||
.gray { | ||
color: #E8E8E8; | ||
} | ||
.blue { | ||
color: #183876; | ||
} | ||
.topmargin { | ||
margin-top: 100px; | ||
} | ||
.leftmargin { | ||
margin-left: 10px; | ||
cursor: pointer; | ||
} | ||
.leftmargin:hover { | ||
color: #04030D; | ||
} | ||
.flex { | ||
margin-top: 10px; | ||
display: flex; | ||
align-items: center; | ||
justify-content: center; | ||
} | ||
|
||
.intosignin { | ||
width: 360px; | ||
height: 60px; | ||
border-radius: 7px; | ||
background: #FFF; | ||
|
||
display: flex; | ||
align-items: center; | ||
justify-content: center; | ||
|
||
color: #04030D; | ||
text-align: center; | ||
font-size: 20px; | ||
|
||
font-style: normal; | ||
font-weight: 600; | ||
letter-spacing: 0.1px; | ||
|
||
cursor: pointer; | ||
} | ||
|
||
.intosignin:hover { | ||
opacity: 0.8; | ||
} | ||
|
||
@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: 1s; | ||
} | ||
|
||
.wrap{ | ||
opacity: 0; | ||
animation: fadeInUp 1s ease forwards; | ||
} | ||
.wrap:nth-child(1) { | ||
animation-delay: 0.5s; | ||
} | ||
|
||
.wrap:nth-child(2) { | ||
animation-delay: 1s; | ||
} | ||
.wrap:nth-child(3) { | ||
animation-delay: 2s; | ||
} |
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
'use client' | ||
|
||
import { useState } from 'react'; | ||
import Onboarding from "../_components/OnBoarding"; | ||
import WatchWord from "../_components/WatchWord"; | ||
import styles from '../Onboard.module.css'; | ||
|
||
function OnboardPage() { | ||
const [showWatchWord, setShowWatchWord] = useState(true); | ||
|
||
|
||
return ( | ||
<div className={styles.background}> | ||
{showWatchWord && <WatchWord handleView={setShowWatchWord}/>} | ||
{!showWatchWord && <Onboarding />} | ||
</div> | ||
); | ||
} | ||
|
||
export default OnboardPage; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
'use client' | ||
|
||
import styles from '../Onboard.module.css'; | ||
import rocketLogo from '../../../_assets/_images/rocketLogo.png'; | ||
import Image from 'next/image'; | ||
import { useRouter } from 'next/navigation'; | ||
|
||
function Onboarding(){ | ||
|
||
const router = useRouter() | ||
|
||
const handleClickSignin = () => { | ||
router.push('/signin') | ||
} | ||
|
||
const handleCilckSignup = () => { | ||
router.push('/singup') | ||
} | ||
|
||
return( | ||
<div className={styles.wrap}> | ||
<div className={styles.topmargin}> | ||
<p className={styles.smallword}>์์ด๋์ด ๊ฒ์ฆ ํด ์๋น์ค</p> | ||
<p className={styles.largeword}>ํ๋ฆฌ๋ฌด์ค</p> | ||
</div> | ||
<div style={{ width: '370px', height: '370px' }}> | ||
<Image | ||
src={rocketLogo} | ||
alt='๋ก์ผ๋ก๊ณ ' | ||
layout="responsive" | ||
width={370} | ||
height={370}/> | ||
</div> | ||
<div className={styles.topmargin}> | ||
<div className={styles.intosignin} onClick={handleClickSignin}>์์ด๋์ด ๊ฒ์ฆํ๋ฌ ๊ฐ๊ธฐ</div> | ||
<div className={styles.flex}> | ||
<div className={`${styles.smallword} ${styles.gray}`}>์์ง ํ์์ด ์๋์๋ผ๋ฉด?</div> | ||
<div className={`${styles.smallword} ${styles.leftmargin}`} onClick={handleCilckSignup}>ํ์๊ฐ์ </div> | ||
</div> | ||
</div> | ||
</div> | ||
); | ||
} | ||
|
||
export default Onboarding; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
import { useEffect,useRef } from 'react'; | ||
import styles from '../Onboard.module.css'; | ||
|
||
function WatchWord ({ handleView }: { handleView: any }) { | ||
const animationRef = useRef<HTMLDivElement>(null); | ||
|
||
useEffect(() => { | ||
const animationend = () => { | ||
handleView(false) | ||
} | ||
|
||
animationRef.current?.addEventListener('animationend', animationend); | ||
|
||
return () => { | ||
animationRef.current?.removeEventListener('animationend', animationend); | ||
}; | ||
}, []); | ||
return ( | ||
<div className={styles.wordwrap} ref={animationRef}> | ||
<p className={styles.word}>๋น์ ์ ์์ด๋์ด๊ฐ</p> | ||
<p className={styles.word}>๋ก์ผ์ฒ๋ผ ์ฑ์ฅํ๋๋ก</p> | ||
</div> | ||
); | ||
} | ||
|
||
export default WatchWord; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,11 @@ | ||
import OnboardPage from "./_components/OnBoardPage"; | ||
|
||
function Onboard() { | ||
return | ||
|
||
|
||
return ( | ||
<OnboardPage/> | ||
); | ||
} | ||
|
||
export default Onboard | ||
export default Onboard; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
.background { | ||
background: #6C76F4; | ||
width: 100%; | ||
height: 100%; | ||
} | ||
|
||
.wordwrap { | ||
height: 100%; | ||
display: flex; | ||
flex-direction: column; | ||
justify-content: center; | ||
} | ||
|
||
.word { | ||
color: #FFF; | ||
text-align: center; | ||
font-size: 36px; | ||
font-style: normal; | ||
font-weight: 600; | ||
line-height: normal; | ||
} | ||
|
||
.intosignup { | ||
width: 360px; | ||
height: 60px; | ||
border-radius: 7px; | ||
background: #FFF; | ||
|
||
display: flex; | ||
align-items: center; | ||
justify-content: center; | ||
|
||
color: #04030D; | ||
text-align: center; | ||
font-size: 20px; | ||
|
||
font-style: normal; | ||
font-weight: 600; | ||
letter-spacing: 0.1px; | ||
} |
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
import rocketLogo from '../../../_assets/_images/rocketLogo.png'; | ||
import Image from 'next/image'; | ||
|
||
function Login(){ | ||
return( | ||
|
||
<div> | ||
<p>์๋ ํ์ธ์</p> | ||
<p>ํ๋ฆฌ๋ฌด์ค์ ๋๋ค</p> | ||
<p>์๋น์ค ์ด์ฉ์ ์ํด์ ๋ก๊ทธ์ธ ํด์ฃผ์ธ์</p> | ||
<Image | ||
src={rocketLogo} | ||
alt='๋ก์ผ๋ก๊ณ ' | ||
layout="responsive" | ||
width={370} | ||
height={370}/> | ||
<div>์นด์นด์ค๋ก ์์ํ๊ธฐ</div> | ||
<div>๋นํ์์ผ๋ก ๋๋ฌ๋ณด๊ธฐ</div> | ||
</div> | ||
) | ||
} | ||
|
||
export default Login |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,8 @@ | ||
import Login from "./_components/Login" | ||
function Signin() { | ||
return | ||
return ( | ||
<Login/> | ||
) | ||
} | ||
|
||
export default Signin |