-
Notifications
You must be signed in to change notification settings - Fork 1
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 #24 from moyeothon/develop
deploy
- Loading branch information
Showing
10 changed files
with
68 additions
and
2 deletions.
There are no files selected for viewing
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.
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
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
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,21 @@ | ||
import * as S from "./style"; | ||
import Button from "@components/common/button/Button"; | ||
import background from "../../assets/background.png"; | ||
|
||
const Main: React.FC = () => { | ||
return ( | ||
<S.Container> | ||
<S.Section> | ||
<S.Background src={background} alt="배경" /> | ||
<S.TitleSection> | ||
<S.Title> | ||
팀과 나를 맞추는 동기화, <br /> Sync Up | ||
</S.Title> | ||
<Button link="/create" name="팀 SyncUp 시작하기" /> | ||
</S.TitleSection> | ||
</S.Section> | ||
</S.Container> | ||
); | ||
}; | ||
|
||
export default Main; |
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 @@ | ||
import styled from "styled-components"; | ||
|
||
export const Container = styled.div` | ||
position: relative; | ||
`; | ||
|
||
export const Title = styled.h1` | ||
color: #343a40; | ||
text-align: center; | ||
font-family: Pretendard; | ||
font-size: 32px; | ||
font-style: normal; | ||
font-weight: 600; | ||
line-height: 40px; /* 111.111% */ | ||
letter-spacing: -0.5px; | ||
`; | ||
|
||
export const Section = styled.div` | ||
height: 100vh; | ||
`; | ||
|
||
export const TitleSection = styled.div` | ||
position: absolute; | ||
width: 70%; | ||
top: 0; | ||
left: 50%; | ||
transform: translateX(-50%); | ||
height: 100vh; | ||
display: flex; | ||
flex-direction: column; | ||
align-items: center; | ||
justify-content: center; | ||
gap: 10rem; | ||
`; | ||
|
||
export const Background = styled.img` | ||
position: relative; | ||
width: 540px; | ||
height: 100%; | ||
`; |
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