-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3 from gunganghaljido/feature/조혜진
Feat: Landing page
- Loading branch information
Showing
10 changed files
with
214 additions
and
34 deletions.
There are no files selected for viewing
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,73 @@ | ||
@import '@/styles/globals.scss'; | ||
|
||
.background { | ||
background-color: $blue60; | ||
width: 100%; | ||
min-height: 100vh; | ||
display: flex; | ||
flex-direction: column; | ||
align-items: center; | ||
justify-content: space-between; | ||
padding: 0 20px 120px; | ||
} | ||
|
||
.logoContainer { | ||
margin-top: 222px; | ||
display: flex; | ||
flex-direction: column; | ||
align-items: center; | ||
|
||
.logo { | ||
margin-top: 32px; | ||
} | ||
} | ||
|
||
.subtitle { | ||
@include T16B; | ||
color: $blue5; | ||
margin-bottom: 16px; | ||
} | ||
|
||
.btnContainer { | ||
width: 100%; | ||
display: flex; | ||
flex-direction: column; | ||
align-items: center; | ||
gap: 16px; | ||
} | ||
|
||
.kakaoBtn { | ||
width: 90%; | ||
max-width: 350px; | ||
height: 52px; | ||
padding: 16px; | ||
display: flex; | ||
justify-content: center; | ||
align-items: center; | ||
flex-shrink: 0; | ||
border-radius: 100px; | ||
background: #ffe400; | ||
color: #222; | ||
@include BOLD; | ||
line-height: 130%; | ||
letter-spacing: -0.16px; | ||
position: relative; | ||
cursor: pointer; | ||
|
||
.kakaoIcon { | ||
position: absolute; | ||
left: 24px; | ||
display: flex; | ||
align-items: center; | ||
} | ||
} | ||
|
||
.serviceBtn { | ||
width: 90%; | ||
max-width: 350px; | ||
height: 20px; | ||
text-align: center; | ||
color: $white; | ||
@include T16B; | ||
cursor: pointer; | ||
} |
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,37 @@ | ||
import IconComponent from '../Asset/Icon'; | ||
import styles from './Landing.module.scss'; | ||
|
||
export default function Landing() { | ||
return ( | ||
<div className={styles.background}> | ||
<div className={styles.logoContainer}> | ||
<p className={styles.subtitle}>모두의 스포츠 시설 서비스</p> | ||
<IconComponent name="logo" alt="logo" width={115.3} height={37.752} /> | ||
<div className={styles.logo}> | ||
<IconComponent | ||
name="landingDumbbell" | ||
alt="dumbbell icon" | ||
width={36} | ||
height={36} | ||
/> | ||
</div> | ||
</div> | ||
<div className={styles.btnContainer}> | ||
<div className={styles.kakaoBtn} role="button" tabIndex={0}> | ||
<div className={styles.kakaoIcon}> | ||
<IconComponent | ||
name="landingKakao" | ||
alt="dumbbell icon" | ||
width={24} | ||
height={24} | ||
/> | ||
</div> | ||
카카오로 계속하기 | ||
</div> | ||
<div className={styles.serviceBtn} role="button" tabIndex={0}> | ||
서비스 둘러보기 | ||
</div> | ||
</div> | ||
</div> | ||
); | ||
} |
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
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
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
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