42 lines
904 B
TypeScript
42 lines
904 B
TypeScript
import type { Metadata } from "next";
|
||
import { Geist, Geist_Mono } from "next/font/google";
|
||
import "./globals.css";
|
||
|
||
const geistSans = Geist({
|
||
variable: "--font-geist-sans",
|
||
subsets: ["latin"],
|
||
});
|
||
|
||
const geistMono = Geist_Mono({
|
||
variable: "--font-geist-mono",
|
||
subsets: ["latin"],
|
||
});
|
||
|
||
export const metadata: Metadata = {
|
||
title: "COZCREATOR|AI 创作者合作服务",
|
||
description: "为创作者与机构提供 AI 分身、内容增长、粉丝关系运营与商业化服务。",
|
||
other: {
|
||
"codex-preview": "development",
|
||
},
|
||
icons: {
|
||
icon: "/favicon.svg",
|
||
shortcut: "/favicon.svg",
|
||
},
|
||
};
|
||
|
||
export default function RootLayout({
|
||
children,
|
||
}: Readonly<{
|
||
children: React.ReactNode;
|
||
}>) {
|
||
return (
|
||
<html lang="zh-CN">
|
||
<body
|
||
className={`${geistSans.variable} ${geistMono.variable} antialiased`}
|
||
>
|
||
{children}
|
||
</body>
|
||
</html>
|
||
);
|
||
}
|