-
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.
- Loading branch information
Showing
5 changed files
with
77 additions
and
1 deletion.
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.
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,19 @@ | ||
.container { | ||
background-color: var(--bg_02); | ||
padding: 20px 20px 60px 20px; | ||
} | ||
|
||
.mt-6 { | ||
margin-top: 6px; | ||
} | ||
|
||
.image-wrapper { | ||
position: relative; | ||
width: 100%; | ||
aspect-ratio: 1; | ||
margin-top: 18px; | ||
} | ||
|
||
.mt-40 { | ||
margin-top: 40px; | ||
} |
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,56 @@ | ||
'use client'; | ||
|
||
import { SideButtonHeader } from 'components/SideButtonHeader'; | ||
import { getClassNames } from 'lib/styles/getClassNames'; | ||
import Image from 'next/image'; | ||
import { useRouter } from 'next/navigation'; | ||
import { howToReportImage } from 'public/images'; | ||
import { SvgIcX } from 'src/assets/icons/components'; | ||
|
||
import styles from './page.module.css'; | ||
|
||
function HelpPage() { | ||
const cx = getClassNames(styles); | ||
const router = useRouter(); | ||
/** | ||
* @TODO 서버 컴포넌트에서 router 대신 사용할 수 있는 것을 찾아서 대체 | ||
*/ | ||
|
||
return ( | ||
<> | ||
<SideButtonHeader | ||
rightButton={ | ||
<button | ||
className={cx('close-button')} | ||
onClick={() => { | ||
router.back(); | ||
}} | ||
> | ||
<SvgIcX width={24} height={24} /> | ||
</button> | ||
} | ||
> | ||
고객센터 | ||
</SideButtonHeader> | ||
<div className={cx('container')}> | ||
<div className={cx('headline02')}>불쾌한 투표/댓글이 있으신가요?</div> | ||
<div className={cx('body_long03', 'mt-6')}> | ||
우측 상단에 점 세개 버튼을 눌러서 <br /> | ||
신고 버튼을 누르면 신고할 수 있습니다. | ||
</div> | ||
<div className={cx('image-wrapper')}> | ||
<Image src={howToReportImage} fill alt="온보딩" /> | ||
</div> | ||
<div className={cx('headline02', 'mt-40')}> | ||
그외 다른 도움이 필요하신가요? | ||
</div> | ||
<div className={cx('body_long03', 'mt-6')}> | ||
서비스 제휴와 광고 등은 아래의 이메일로 문의해주세요. <br /> | ||
[email protected] | ||
</div> | ||
</div> | ||
</> | ||
); | ||
} | ||
|
||
export default HelpPage; |
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