import { ReactNode } from 'react'; import { AdminShell } from '@/components/admin/AdminShell'; export const metadata = { title: { default: '后台管理', template: '%s - 后台管理' }, robots: { index: false, follow: false }, }; export default function AdminLayout({ children }: { children: ReactNode }) { return {children}; }