import type { Metadata } from 'next';
import './globals.css';

export const metadata: Metadata = {
  title: '会议室预约管理后台',
  description: '共创空间会议室预约系统 - 管理端',
};

export default function RootLayout({
  children,
}: {
  children: React.ReactNode;
}) {
  return (
    <html lang="zh-CN">
      <body>{children}</body>
    </html>
  );
}
