대시보드에 회의 예약 FAB 버튼 추가

- design/uiux/prototype/02-대시보드.html에 Floating Action Button 추가
- gappa 프로토타입 참조하여 회의 예약 바로가기 기능 구현
- 버튼 클릭 시 03-회의예약.html로 이동
- 모바일/데스크톱 모두 지원

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
kimjh 2025-10-22 09:42:58 +09:00
parent 3b004dc70b
commit f3c382dfe0

View File

@ -529,6 +529,9 @@
</a> </a>
</nav> </nav>
<!-- FAB (Floating Action Button) -->
<button class="fab" id="fabButton" title="새 회의 예약">+</button>
<script src="common.js"></script> <script src="common.js"></script>
<script> <script>
/** /**
@ -743,6 +746,13 @@
console.log('대시보드 초기화 완료'); console.log('대시보드 초기화 완료');
} }
/**
* FAB 버튼 클릭 이벤트
*/
$('#fabButton').addEventListener('click', () => {
navigateTo('03-회의예약.html');
});
init(); init();
</script> </script>
</body> </body>