初始化提交

This commit is contained in:
2024-08-13 09:37:23 +08:00
parent 4923337038
commit e112fa4e44
50 changed files with 1649 additions and 259 deletions
+4 -4
View File
@@ -3,11 +3,11 @@ import { Inter } from "next/font/google";
import "./globals.css";
import "./markdown.css";
const inter = Inter({ subsets: ["latin"] });
const inter = Inter({ subsets: ["latin", "latin-ext"] });
export const metadata: Metadata = {
title: "Create Llama App",
description: "Generated by create-llama",
title: "博微造价工程文件知识问答",
description: "博微技术中心搭建的造价工程文件知识问答",
};
export default function RootLayout({
@@ -16,7 +16,7 @@ export default function RootLayout({
children: React.ReactNode;
}) {
return (
<html lang="en">
<html lang="zh-CN">
<body className={inter.className}>{children}</body>
</html>
);