21 lines
669 B
TypeScript
21 lines
669 B
TypeScript
"use client";
|
|
|
|
import { MenuManagement } from "@/components/admin/MenuManagement";
|
|
|
|
export default function MenuPage() {
|
|
return (
|
|
<div className="min-h-screen bg-gray-50">
|
|
<div className="w-full max-w-none px-4 py-8 space-y-8">
|
|
{/* 페이지 제목 */}
|
|
<div className="flex items-center justify-between bg-white rounded-lg shadow-sm border p-6">
|
|
<div>
|
|
<h1 className="text-3xl font-bold text-gray-900">메뉴 관리</h1>
|
|
<p className="mt-2 text-gray-600">시스템 메뉴를 관리하고 화면을 할당합니다</p>
|
|
</div>
|
|
</div>
|
|
<MenuManagement />
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|