20 lines
467 B
TypeScript
20 lines
467 B
TypeScript
import type { Metadata } from "next";
|
|
import "./globals.css";
|
|
import Layout from "@/components/Layout";
|
|
|
|
export const metadata: Metadata = {
|
|
title: "大本营答疑资产后台系统 MVP",
|
|
description: "答疑转写清洗、审核与标准问答沉淀后台"
|
|
};
|
|
|
|
export default function RootLayout({ children }: { children: React.ReactNode }) {
|
|
return (
|
|
<html lang="zh-CN">
|
|
<body>
|
|
<Layout>{children}</Layout>
|
|
</body>
|
|
</html>
|
|
);
|
|
}
|
|
|