Files
Crawl_demo/frontend/app/layout.tsx
2026-03-18 18:57:58 +08:00

16 lines
375 B
TypeScript

export const metadata = {
title: "Crawl BI Dashboard",
description: "Sales BI + Trend Engine + AI insight"
};
export default function RootLayout({ children }: { children: React.ReactNode }) {
return (
<html lang="zh-CN">
<body style={{ margin: 0, fontFamily: "ui-sans-serif, system-ui, -apple-system" }}>
{children}
</body>
</html>
);
}