diff --git a/frontend/components/admin/dashboard/DashboardSidebar.tsx b/frontend/components/admin/dashboard/DashboardSidebar.tsx
deleted file mode 100644
index 62c50fdc..00000000
--- a/frontend/components/admin/dashboard/DashboardSidebar.tsx
+++ /dev/null
@@ -1,264 +0,0 @@
-"use client";
-
-import React, { useState } from "react";
-import { DragData, ElementType, ElementSubtype } from "./types";
-import { ChevronDown, ChevronRight } from "lucide-react";
-
-/**
- * 대시보드 사이드바 컴포넌트
- * - 드래그 가능한 차트/위젯 목록
- * - 아코디언 방식으로 카테고리별 구분
- */
-export function DashboardSidebar() {
- const [expandedSections, setExpandedSections] = useState({
- charts: true,
- widgets: true,
- operations: true,
- });
-
- // 섹션 토글
- const toggleSection = (section: keyof typeof expandedSections) => {
- setExpandedSections((prev) => ({ ...prev, [section]: !prev[section] }));
- };
-
- // 드래그 시작 처리
- const handleDragStart = (e: React.DragEvent, type: ElementType, subtype: ElementSubtype) => {
- const dragData: DragData = { type, subtype };
- e.dataTransfer.setData("application/json", JSON.stringify(dragData));
- e.dataTransfer.effectAllowed = "copy";
- };
-
- return (
-
- {/* 차트 섹션 */}
-
-
toggleSection("charts")}
- className="mb-3 flex w-full items-center justify-between px-1 py-2.5 text-xl font-bold text-foreground transition-colors hover:text-primary"
- >
- 차트 종류
- {expandedSections.charts ? (
-
- ) : (
-
- )}
-
-
- {expandedSections.charts && (
-
-
-
-
-
-
-
-
-
-
- )}
-
-
- {/* 위젯 섹션 */}
-
-
toggleSection("widgets")}
- className="mb-3 flex w-full items-center justify-between px-1 py-2.5 text-xl font-bold text-foreground transition-colors hover:text-primary"
- >
- 위젯 종류
- {expandedSections.widgets ? (
-
- ) : (
-
- )}
-
-
- {expandedSections.widgets && (
-
-
-
-
-
-
- {/* */}
-
-
-
-
-
- )}
-
-
- {/* 운영/작업 지원 섹션 */}
-
-
toggleSection("operations")}
- className="mb-3 flex w-full items-center justify-between px-1 py-2.5 text-xl font-bold text-foreground transition-colors hover:text-primary"
- >
- 운영/작업 지원
- {expandedSections.operations ? (
-
- ) : (
-
- )}
-
-
- {expandedSections.operations && (
-
-
- {/* 예약알림 위젯 - 필요시 주석 해제 */}
- {/* */}
- {/* 정비 일정 관리 위젯 제거 - 커스텀 목록 카드로 대체 가능 */}
-
-
-
-
-
- )}
-
-
- );
-}
-
-interface DraggableItemProps {
- icon?: string;
- title: string;
- type: ElementType;
- subtype: ElementSubtype;
- className?: string;
- onDragStart: (e: React.DragEvent, type: ElementType, subtype: ElementSubtype) => void;
-}
-
-/**
- * 드래그 가능한 아이템 컴포넌트
- */
-function DraggableItem({ title, type, subtype, className = "", onDragStart }: DraggableItemProps) {
- return (
- onDragStart(e, type, subtype)}
- >
- {title}
-
- );
-}
diff --git a/frontend/components/admin/dashboard/DashboardTopMenu.tsx b/frontend/components/admin/dashboard/DashboardTopMenu.tsx
index f2a11b29..fdac3319 100644
--- a/frontend/components/admin/dashboard/DashboardTopMenu.tsx
+++ b/frontend/components/admin/dashboard/DashboardTopMenu.tsx
@@ -198,7 +198,7 @@ export function DashboardTopMenu({
할 일
{/* 예약 알림 */}
정비 일정
- 문서
+ {/* 문서 */}
리스크 알림
{/* 범용 위젯으로 대체 가능하여 주석처리 */}