2025-11-18 23:42:41 +09:00
|
|
|
'use client';
|
|
|
|
|
|
|
|
|
|
import AdminSidebar from "@/app/components/AdminSidebar";
|
|
|
|
|
|
|
|
|
|
export default function AdminResourcesPage() {
|
|
|
|
|
return (
|
|
|
|
|
<div className="min-h-screen flex flex-col bg-white">
|
2025-11-19 01:41:27 +09:00
|
|
|
{/* 메인 레이아웃 */}
|
|
|
|
|
<div className="flex flex-1 min-h-0 justify-center">
|
|
|
|
|
<div className="w-full max-w-[1120px] flex min-h-0">
|
|
|
|
|
{/* 사이드바 */}
|
|
|
|
|
<div className="px-8 flex">
|
|
|
|
|
<AdminSidebar />
|
|
|
|
|
</div>
|
2025-11-18 23:42:41 +09:00
|
|
|
|
2025-11-19 01:41:27 +09:00
|
|
|
{/* 메인 콘텐츠 */}
|
|
|
|
|
<main className="flex-1 min-w-0 bg-white">
|
|
|
|
|
<div className="h-full flex flex-col">
|
|
|
|
|
{/* 제목 영역 */}
|
|
|
|
|
<div className="h-[100px] flex items-center">
|
|
|
|
|
<h1 className="text-[24px] font-bold leading-[1.5] text-[#1b2027]">
|
|
|
|
|
학습 자료실
|
|
|
|
|
</h1>
|
|
|
|
|
</div>
|
2025-11-18 23:42:41 +09:00
|
|
|
|
2025-11-19 01:41:27 +09:00
|
|
|
{/* 콘텐츠 영역 */}
|
|
|
|
|
<div className="flex-1 pt-8 flex flex-col">
|
|
|
|
|
</div>
|
2025-11-18 23:42:41 +09:00
|
|
|
</div>
|
2025-11-19 01:41:27 +09:00
|
|
|
</main>
|
|
|
|
|
</div>
|
2025-11-18 23:42:41 +09:00
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|