-
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.
#25 header menus justiry & footer update
- Loading branch information
Showing
7 changed files
with
57 additions
and
28 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,40 @@ | ||
import React from "react"; | ||
import { FooterBox, FooterContents, FooterIconBox } from "../../styles/layout/footer"; | ||
import { ReactComponent as NLslogo } from '../../assets/NL_logo-white.svg' | ||
import { | ||
FooterBox, | ||
FooterContents, | ||
FooterIconBox, | ||
} from "../../styles/layout/footer"; | ||
import { ReactComponent as NLslogo } from "../../assets/NL_logo-white.svg"; | ||
import gitIcon from "../../assets/github_icon.svg"; | ||
import mailIcon from "../../assets/mail_icon.svg"; | ||
import { Text } from "../common"; | ||
|
||
function Footer() { | ||
return ( | ||
<FooterBox> | ||
<FooterIconBox> | ||
<NLslogo width="35px"/> | ||
<NLslogo width="35px" /> | ||
<a href="https://github.com/Network-Leader"> | ||
<img src={gitIcon} alt="github" /> | ||
</a> | ||
<img src={mailIcon} alt="mail" /> | ||
</FooterIconBox> | ||
<FooterContents> | ||
<Text size="small" color="foot" children="서울특별시 노원구 공릉로" lineheight="28px"/> | ||
<Text size="small" color="foot" children="© 개인정보처리방침 NL. All RIGHT RESERVED" lineheight="28px"/> | ||
<Text | ||
size="small" | ||
color="foot" | ||
children="서울특별시 노원구 공릉로" | ||
lineheight="28px" | ||
/> | ||
<Text | ||
size="small" | ||
color="foot" | ||
children="© 개인정보처리방침 NL. All RIGHT RESERVED" | ||
lineheight="28px" | ||
/> | ||
</FooterContents> | ||
</FooterBox> | ||
) | ||
); | ||
} | ||
|
||
export default Footer | ||
export default Footer; |
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,31 +1,29 @@ | ||
import styled from "@emotion/styled"; | ||
|
||
const FooterBox = styled.div` | ||
position: absolute; | ||
display: flex; | ||
flex-direction: column; | ||
align-items: center; | ||
/* width: 1441px; */ | ||
z-index: 999; | ||
width: 100%; | ||
height: 318px; | ||
left: 0px; | ||
top: 6057px; | ||
background-color: black; | ||
` | ||
`; | ||
|
||
const FooterIconBox = styled.div` | ||
display: flex; | ||
min-height: 35px; | ||
margin-top: 148px; | ||
min-width: 942px; | ||
border-bottom: 2px solid white; | ||
` | ||
`; | ||
|
||
const FooterContents = styled.div` | ||
min-width: 942px; | ||
color: white; | ||
padding: 40px 0px; | ||
` | ||
`; | ||
|
||
export { FooterBox, FooterIconBox, FooterContents }; | ||
export { FooterBox, FooterIconBox, FooterContents }; |
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