2025-08-21 09:41:46 +09:00
|
|
|
"use client";
|
|
|
|
|
|
|
|
|
|
import { MenuManagement } from "@/components/admin/MenuManagement";
|
|
|
|
|
|
|
|
|
|
export default function MenuPage() {
|
|
|
|
|
return (
|
2025-09-24 18:07:36 +09:00
|
|
|
<div className="min-h-screen bg-gray-50">
|
|
|
|
|
<div className="container mx-auto p-6 space-y-6">
|
|
|
|
|
{/* 페이지 제목 */}
|
|
|
|
|
<div className="flex items-center justify-between">
|
|
|
|
|
<div>
|
|
|
|
|
<h1 className="text-3xl font-bold text-gray-900">메뉴 관리</h1>
|
|
|
|
|
<p className="mt-2 text-gray-600">시스템 메뉴를 관리하고 화면을 할당합니다</p>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<MenuManagement />
|
|
|
|
|
</div>
|
2025-08-21 09:41:46 +09:00
|
|
|
</div>
|
|
|
|
|
);
|
|
|
|
|
}
|