24 lines
554 B
TypeScript
24 lines
554 B
TypeScript
import type { Metadata } from "next";
|
|
import { Inter } from "next/font/google";
|
|
import "./globals.css";
|
|
import "./markdown.css";
|
|
|
|
const inter = Inter({ subsets: ["latin", "latin-ext"] });
|
|
|
|
export const metadata: Metadata = {
|
|
title: "博微造价工程文件知识问答",
|
|
description: "博微技术中心搭建的造价工程文件知识问答",
|
|
};
|
|
|
|
export default function RootLayout({
|
|
children,
|
|
}: {
|
|
children: React.ReactNode;
|
|
}) {
|
|
return (
|
|
<html lang="zh-CN">
|
|
<body className={inter.className}>{children}</body>
|
|
</html>
|
|
);
|
|
}
|