-
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 #5 from ongheong/ongheong-main
이용안내 화면 : 주요 컴포넌트 배치, head&body css 수정
- Loading branch information
Showing
11 changed files
with
118 additions
and
84 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
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,49 @@ | ||
import React from "react"; | ||
import styled from 'styled-components'; | ||
|
||
function GuideTemplate() { | ||
const detail = [ | ||
"메인 화면에서 단체 아바타를 클릭하면 해당 단체의 홈페이지로 이동할 수 있습니다. 단체 계정을 통해 접속하면 해당 단체의 홈페이지를 원하는 방식대로 꾸밀 수 있습니다.", | ||
"메인 화면에서 단체 아바타를 클릭하면 해당 단체의 홈페이지로 이동할 수 있습니다. 단체 계정을 통해 접속하면 해당 단체의 홈페이지를 원하는 방식대로 꾸밀 수 있습니다.", | ||
"메인 화면에서 단체 아바타를 클릭하면 해당 단체의 홈페이지로 이동할 수 있습니다. 단체 계정을 통해 접속하면 해당 단체의 홈페이지를 원하는 방식대로 꾸밀 수 있습니다.", | ||
"메인 화면에서 단체 아바타를 클릭하면 해당 단체의 홈페이지로 이동할 수 있습니다. 단체 계정을 통해 접속하면 해당 단체의 홈페이지를 원하는 방식대로 꾸밀 수 있습니다." | ||
] | ||
|
||
return ( | ||
<> | ||
{/* <Header /> */} | ||
{/* <TranslucentBox> | ||
<InnerTopBar /> | ||
<InnerText /> | ||
<InnerText /> | ||
<InnerText /> | ||
<InnerText /> | ||
</TranslucentBox> */} | ||
</> | ||
); | ||
}; | ||
|
||
function InnerTopBar() { | ||
return ( | ||
<> | ||
<h3>이용안내</h3> | ||
<NavButton>개인/단체 아바타</NavButton> | ||
<NavButton>단체 홈페이지</NavButton> | ||
<NavButton>뉴스레터</NavButton> | ||
<NavButton>광장</NavButton> | ||
</> | ||
); | ||
} | ||
|
||
function InnerText() { | ||
return ( | ||
<> | ||
<h4>단체 홈페이지</h4> | ||
<h5>{detail[0]}</h5> | ||
{/* <GuideImage src={} alt="단체홈페이지"/> | ||
<GuideImage src={} alt="단체홈페이지"/> */} | ||
</> | ||
); | ||
} | ||
|
||
export default GuideTemplate; |
Empty file.
Empty file.
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
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,25 @@ | ||
import styled from 'styled-components'; | ||
|
||
const WhiteBox = styled.div` | ||
width: 55%; | ||
height: auto; | ||
padding: 2% 5% 3% 5%; | ||
border-radius: 30px; | ||
background-color: var(--white); | ||
h1 { | ||
font-family: var(--main-font); | ||
font-size: 40px; | ||
letter-spacing: -4px; | ||
margin-bottom: 0; | ||
} | ||
h3 { | ||
font-family: var(--main-font); | ||
font-size: 20px; | ||
font-weight: 400; | ||
letter-spacing: -2px; | ||
margin-top: 10px; | ||
margin-bottom: 37px; | ||
} | ||
`; | ||
|
||
export default WhiteBox; |
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,10 @@ | ||
import React from 'react'; | ||
import GuideTemplate from "../component/guide/GuideTemplate"; | ||
|
||
function GuideScreen() { | ||
return ( | ||
<GuideTemplate /> | ||
); | ||
}; | ||
|
||
export default GuideScreen; |
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