-
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.
Browse files
Browse the repository at this point in the history
- Loading branch information
Showing
10 changed files
with
61 additions
and
21 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 |
---|---|---|
|
@@ -87,6 +87,7 @@ export { default as PeachImg } from './img_peach.png'; | |
export { default as InterparkImg } from './interpark.png'; | ||
export { default as InterparkNoBgImg } from './interpark_no_bg.png'; | ||
export { default as LeafImg } from './[email protected]'; | ||
export { default as MainBannerImg } from './main_banner.png'; | ||
export { default as MovingAirplane } from './moving_airplane.png'; | ||
export { default as MyrealtripImg } from './myrealtrip.png'; | ||
export { default as MyrealtripNoBgImg } from './myrealtrip_no_bg.png'; | ||
|
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
import styled from 'styled-components'; | ||
|
||
import SearchBar from '../common/SearchBar'; | ||
|
||
const Nav = () => { | ||
return ( | ||
<NavContainer> | ||
<Title>수백만 개의 저가 항공권, 검색 한 번으로 간단하게</Title> | ||
<SearchBar /> | ||
</NavContainer> | ||
); | ||
}; | ||
|
||
export default Nav; | ||
|
||
const NavContainer = styled.section` | ||
display: flex; | ||
flex-direction: column; | ||
gap: 2.4rem; | ||
padding-top: 4.8rem; | ||
`; | ||
|
||
const Title = styled.h1` | ||
color: ${({ theme }) => theme.colors.skscanWt}; | ||
${({ theme }) => theme.fonts.heading04}; | ||
`; |
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