|
@@ -1,6 +1,36 @@
|
|
|
export const menuItems = [
|
|
export const menuItems = [
|
|
|
- { label: '회사소개', children: [] },
|
|
|
|
|
- { label: '사업소개', children: [] },
|
|
|
|
|
- { label: '사업실적', children: [] },
|
|
|
|
|
- { label: '고객지원', children: [] },
|
|
|
|
|
|
|
+ {
|
|
|
|
|
+ label: '회사소개',
|
|
|
|
|
+ href: '/company', // 상위 메뉴 주소 추가
|
|
|
|
|
+ children: [
|
|
|
|
|
+ { label: 'CEO인사말', href: '/ceo' },
|
|
|
|
|
+ { label: '연혁', href: '/history' },
|
|
|
|
|
+ { label: '조직도', href: '/organization' },
|
|
|
|
|
+ { label: '사무실 전경', href: '/office' },
|
|
|
|
|
+ { label: '특허/인증', href: '/patent' },
|
|
|
|
|
+ { label: '협력업체', href: '/partners' },
|
|
|
|
|
+ { label: '찾아오시는길', href: '/location' },
|
|
|
|
|
+ ],
|
|
|
|
|
+ },
|
|
|
|
|
+ {
|
|
|
|
|
+ label: '사업소개',
|
|
|
|
|
+ href: '/business', // 상위 메뉴 주소 추가
|
|
|
|
|
+ children: [
|
|
|
|
|
+ { label: '사업 영역', href: '/business-area' },
|
|
|
|
|
+ { label: '기술 소개', href: '/technology' },
|
|
|
|
|
+ ],
|
|
|
|
|
+ },
|
|
|
|
|
+ {
|
|
|
|
|
+ label: '사업실적',
|
|
|
|
|
+ href: '/performance', // 주소 추가
|
|
|
|
|
+ children: [],
|
|
|
|
|
+ },
|
|
|
|
|
+ {
|
|
|
|
|
+ label: '고객지원',
|
|
|
|
|
+ href: '/support', // 주소 추가
|
|
|
|
|
+ children: [
|
|
|
|
|
+ { label: '공지사항', href: '/notice' },
|
|
|
|
|
+ { label: '자료실', href: '/resources' },
|
|
|
|
|
+ ],
|
|
|
|
|
+ },
|
|
|
];
|
|
];
|