+ {/* 사용자 관리 */}
+
navigateToPage('user-management')}
+ style={{
+ background: 'white',
+ borderRadius: '16px',
+ padding: '24px',
+ boxShadow: '0 8px 20px rgba(0, 0, 0, 0.08)',
+ border: '1px solid #e2e8f0',
+ cursor: 'pointer',
+ transition: 'all 0.3s ease',
+ textAlign: 'center'
+ }}
+ onMouseEnter={(e) => {
+ e.currentTarget.style.transform = 'translateY(-3px)';
+ e.currentTarget.style.boxShadow = '0 12px 25px rgba(0, 0, 0, 0.12)';
+ }}
+ onMouseLeave={(e) => {
+ e.currentTarget.style.transform = 'translateY(0)';
+ e.currentTarget.style.boxShadow = '0 8px 20px rgba(0, 0, 0, 0.08)';
+ }}
+ >
+
+ USER
+
+
+ User Management
+
+
+ Manage user accounts and permissions
+
+ {pendingSignupCount > 0 && (
+
+ {pendingSignupCount} pending
+
+ )}
+
+
+ {/* 시스템 설정 */}
+
navigateToPage('system-settings')}
+ style={{
+ background: 'white',
+ borderRadius: '16px',
+ padding: '24px',
+ boxShadow: '0 8px 20px rgba(0, 0, 0, 0.08)',
+ border: '1px solid #e2e8f0',
+ cursor: 'pointer',
+ transition: 'all 0.3s ease',
+ textAlign: 'center'
+ }}
+ onMouseEnter={(e) => {
+ e.currentTarget.style.transform = 'translateY(-3px)';
+ e.currentTarget.style.boxShadow = '0 12px 25px rgba(0, 0, 0, 0.12)';
+ }}
+ onMouseLeave={(e) => {
+ e.currentTarget.style.transform = 'translateY(0)';
+ e.currentTarget.style.boxShadow = '0 8px 20px rgba(0, 0, 0, 0.08)';
+ }}
+ >
+
+ SYS
+
+
+ System Settings
+
+
+ Configure system preferences and settings
+
+
+
+ {/* 시스템 로그 */}
+
navigateToPage('system-logs')}
+ style={{
+ background: 'white',
+ borderRadius: '16px',
+ padding: '24px',
+ boxShadow: '0 8px 20px rgba(0, 0, 0, 0.08)',
+ border: '1px solid #e2e8f0',
+ cursor: 'pointer',
+ transition: 'all 0.3s ease',
+ textAlign: 'center'
+ }}
+ onMouseEnter={(e) => {
+ e.currentTarget.style.transform = 'translateY(-3px)';
+ e.currentTarget.style.boxShadow = '0 12px 25px rgba(0, 0, 0, 0.12)';
+ }}
+ onMouseLeave={(e) => {
+ e.currentTarget.style.transform = 'translateY(0)';
+ e.currentTarget.style.boxShadow = '0 8px 20px rgba(0, 0, 0, 0.08)';
+ }}
+ >
+
+ LOG
+
+
+ System Logs
+
+
+ View system activity and error logs
+
+
+
+ {/* 로그 모니터링 */}
+
navigateToPage('log-monitoring')}
+ style={{
+ background: 'white',
+ borderRadius: '16px',
+ padding: '24px',
+ boxShadow: '0 8px 20px rgba(0, 0, 0, 0.08)',
+ border: '1px solid #e2e8f0',
+ cursor: 'pointer',
+ transition: 'all 0.3s ease',
+ textAlign: 'center'
+ }}
+ onMouseEnter={(e) => {
+ e.currentTarget.style.transform = 'translateY(-3px)';
+ e.currentTarget.style.boxShadow = '0 12px 25px rgba(0, 0, 0, 0.12)';
+ }}
+ onMouseLeave={(e) => {
+ e.currentTarget.style.transform = 'translateY(0)';
+ e.currentTarget.style.boxShadow = '0 8px 20px rgba(0, 0, 0, 0.08)';
+ }}
+ >
+
+ MON
+
+
+ Log Monitoring
+
+
+ Real-time system monitoring and alerts
+
+
+