12 lines
352 B
TypeScript
12 lines
352 B
TypeScript
import type { Metadata } from 'next';
|
|
import AdminShell from './components/AdminShell';
|
|
|
|
export const metadata: Metadata = {
|
|
title: '관리자 패널 — 쟁승메이드',
|
|
robots: { index: false, follow: false },
|
|
};
|
|
|
|
export default function AdminLayout({ children }: { children: React.ReactNode }) {
|
|
return <AdminShell>{children}</AdminShell>;
|
|
}
|