13 lines
356 B
TypeScript
13 lines
356 B
TypeScript
export default function MenuPage() {
|
|
return (
|
|
<main className="mx-auto w-full max-w-[1440px] px-8 py-8">
|
|
<h1 className="text-[24px] font-bold leading-[1.5] text-[#1b2027]">교육 과정 목록</h1>
|
|
<p className="mt-6 text-[16px] leading-[1.5] text-[#4c5561]">
|
|
메뉴 페이지 준비 중입니다.
|
|
</p>
|
|
</main>
|
|
);
|
|
}
|
|
|
|
|