website-01/app/admin/layout.tsx

12 lines
363 B
TypeScript
Raw Normal View History

2026-06-22 14:43:46 +08:00
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 <AdminShell>{children}</AdminShell>;
}