diff --git a/design/uiux/prototype/03-프로필.html b/design/uiux/prototype/03-프로필.html
index 98f315a..359df83 100644
--- a/design/uiux/prototype/03-프로필.html
+++ b/design/uiux/prototype/03-프로필.html
@@ -124,7 +124,7 @@
const header = KTEventApp.Navigation.createHeader({
title: '프로필',
showBack: true,
- showMenu: true,
+ showMenu: false,
showProfile: false
});
document.getElementById('header').appendChild(header);
diff --git a/design/uiux/prototype/05-대시보드.html b/design/uiux/prototype/05-대시보드.html
index ed0e4f3..afd3a1a 100644
--- a/design/uiux/prototype/05-대시보드.html
+++ b/design/uiux/prototype/05-대시보드.html
@@ -89,7 +89,7 @@
const header = KTEventApp.Navigation.createHeader({
title: '대시보드',
showBack: false,
- showMenu: true,
+ showMenu: false,
showProfile: true
});
document.getElementById('header').appendChild(header);
@@ -190,16 +190,8 @@
// 빠른 시작 버튼 이벤트
document.getElementById('createEvent').addEventListener('click', createNewEvent);
- document.getElementById('aiRecommend').addEventListener('click', () => {
- window.location.href = '07-이벤트목적선택.html';
- });
-
- document.getElementById('viewTemplates').addEventListener('click', () => {
- KTEventApp.Feedback.showToast('템플릿 기능은 준비 중입니다.');
- });
-
document.getElementById('viewAnalytics').addEventListener('click', () => {
- window.location.href = '13-이벤트상세.html?id=' + events[0].id;
+ window.location.href = '17-성과분석.html';
});
// 새 이벤트 생성 함수
diff --git a/design/uiux/prototype/06-이벤트목록.html b/design/uiux/prototype/06-이벤트목록.html
index dd2b91e..3a9dfac 100644
--- a/design/uiux/prototype/06-이벤트목록.html
+++ b/design/uiux/prototype/06-이벤트목록.html
@@ -82,7 +82,7 @@
const header = KTEventApp.Navigation.createHeader({
title: '이벤트 목록',
showBack: true,
- showMenu: true,
+ showMenu: false,
showProfile: true
});
document.getElementById('header').appendChild(header);
diff --git a/design/uiux/prototype/13-이벤트상세.html b/design/uiux/prototype/13-이벤트상세.html
index 1d0fba6..2df2ebb 100644
--- a/design/uiux/prototype/13-이벤트상세.html
+++ b/design/uiux/prototype/13-이벤트상세.html
@@ -184,7 +184,7 @@
document.getElementById('header').appendChild(header);
// Bottom Navigation 생성
- const bottomNav = KTEventApp.Navigation.createBottomNav('analytics');
+ const bottomNav = KTEventApp.Navigation.createBottomNav('events');
document.getElementById('bottomNav').appendChild(bottomNav);
// URL에서 이벤트 ID 가져오기
diff --git a/design/uiux/prototype/14-참여자목록.html b/design/uiux/prototype/14-참여자목록.html
index 5a019dc..1996f5a 100644
--- a/design/uiux/prototype/14-참여자목록.html
+++ b/design/uiux/prototype/14-참여자목록.html
@@ -82,7 +82,7 @@
const header = KTEventApp.Navigation.createHeader({
title: '참여자 목록',
showBack: true,
- showMenu: true,
+ showMenu: false,
showProfile: true
});
document.getElementById('header').appendChild(header);
diff --git a/design/uiux/prototype/17-성과분석.html b/design/uiux/prototype/17-성과분석.html
index 334b6f2..77feecf 100644
--- a/design/uiux/prototype/17-성과분석.html
+++ b/design/uiux/prototype/17-성과분석.html
@@ -345,7 +345,7 @@
const header = KTEventApp.Navigation.createHeader({
title: '실시간 대시보드',
showBack: true,
- showMenu: true,
+ showMenu: false,
showProfile: true
});
document.getElementById('header').appendChild(header);
diff --git a/design/uiux/prototype/common.js b/design/uiux/prototype/common.js
index 71c8d71..0f796bd 100644
--- a/design/uiux/prototype/common.js
+++ b/design/uiux/prototype/common.js
@@ -207,7 +207,7 @@ const KTEventApp = (() => {
const navItems = [
{ id: 'home', label: '홈', icon: 'home', href: '05-대시보드.html' },
{ id: 'events', label: '이벤트', icon: 'celebration', href: '06-이벤트목록.html' },
- { id: 'analytics', label: '분석', icon: 'analytics', href: '13-이벤트상세.html' },
+ { id: 'analytics', label: '분석', icon: 'analytics', href: '17-성과분석.html' },
{ id: 'profile', label: '프로필', icon: 'person', href: '03-프로필.html' }
];