Skip to content

Commit

Permalink
📦 add : 메뉴 링크 연결
Browse files Browse the repository at this point in the history
  • Loading branch information
seondal committed Jan 9, 2024
1 parent 45a25d5 commit 7635ec8
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 6 deletions.
10 changes: 5 additions & 5 deletions src/app/(Sub)/menu/components/MenuListSection.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@
import { URL } from '@/constants/url';

const MenuList = [
{ text: '공지사항', link: URL.information },
{ text: '자주 묻는 질문', link: '' },
{ text: '문의하기', link: '' },
{ text: '공지사항', link: URL.menu.notice },
{ text: '자주 묻는 질문', link: URL.menu.faq },
{ text: '문의하기', link: URL.inquiry },
{ text: '', link: '' },
{ text: '이용약관', link: '' },
{ text: '개인정보 처리방침', link: '' },
{ text: '이용약관', link: URL.menu.term },
{ text: '개인정보 처리방침', link: URL.menu.privacy },
] as const;

export default function MenuListSection() {
Expand Down
7 changes: 6 additions & 1 deletion src/constants/url.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
export const URL = {
site: 'https://www.posepicker.site',
inquiry: 'https://litt.ly/posepicker',
information: 'https://shineshine.notion.site/a668d9eba61f48e584df2ad3a946c313',
menu: {
notice: 'https://shineshine.notion.site/fde248040bed45f68fbfa3004e2c4856',
faq: 'https://shineshine.notion.site/cc71decc2e534ae6abb195bb10a501c0',
term: 'https://shineshine.notion.site/3113eb146abb4b5c809070c3f01380da',
privacy: 'https://shineshine.notion.site/75e98a2462824b839a9c37473a6afbd5',
},
};

0 comments on commit 7635ec8

Please sign in to comment.