import styles from './DashboardPage.module.css' import Header from '../components/layout/Header' import BuildingCard from '../components/dashboard/BuildingCard' import BatteryHealthCard from '../components/dashboard/BatteryHealthCard' // 건물 데이터 (추후 API 연동) const buildings = [ { id: 1, name: '물류동', workers: 1107, anchorNormal: 6, anchorBroken: 0 }, { id: 2, name: '생산동', workers: 1107, anchorNormal: 12, anchorBroken: 3 }, { id: 3, name: '관리동', workers: 1107, anchorNormal: 2, anchorBroken: 3 }, { id: 4, name: '위험물', workers: 117, anchorNormal: 12, anchorBroken: 0 }, { id: 5, name: '휴게동', workers: 1107, anchorNormal: 120, anchorBroken: 1 }, { id: 6, name: '식당', workers: 25, anchorNormal: 6, anchorBroken: 0 }, ] export default function DashboardPage() { return (
{/* Background blur effect */}
{/* Header */}
{/* 전체 현황 섹션 */}

전체 현황

등록된 작업자 4,597
단지내 재실자 4,487
미입실 110
{/* 건물 선택 섹션 */}
건물을 선택해주세요.
{buildings.map((building) => ( ))}
{/* 배터리 헬스 체크 섹션 */}
배터리 헬스 체크
) } function ChevronIcon() { return ( ) }