-
Notifications
You must be signed in to change notification settings - Fork 3
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
2 changed files
with
19 additions
and
16 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
import { URL } from './url'; | ||
|
||
interface MenuI { | ||
text: string; | ||
link: string; | ||
highlight?: boolean; | ||
} | ||
const MenuList: readonly MenuI[] = [ | ||
{ text: '공지사항', link: URL.menu.notice }, | ||
{ text: '자주 묻는 질문', link: URL.menu.faq }, | ||
{ text: '포즈피커 공식 SNS', link: URL.instagram, highlight: true }, | ||
{ text: '문의하기', link: URL.inquiry }, | ||
{ text: '', link: '' }, | ||
{ text: '이용약관', link: URL.menu.term }, | ||
{ text: '개인정보 처리방침', link: URL.menu.privacy }, | ||
] as const; | ||
|
||
export default MenuList; |