feat: refresh frontend visual design

This commit is contained in:
2026-04-23 11:00:29 +08:00
parent 562c95c4b5
commit 3dd5c454cb
11 changed files with 1262 additions and 336 deletions

View File

@@ -1,12 +1,13 @@
import type { Metadata } from "next";
import { bodyFont, displayFont, monoFont } from "@/app/fonts";
import { Providers } from "@/components/providers";
import "./globals.css";
export const metadata: Metadata = {
title: "AIVideo",
description: "AI 视频生成平台用户前台",
description: "AIVideo AI 视频创作与运营控制台",
};
export default function RootLayout({
@@ -15,7 +16,10 @@ export default function RootLayout({
children: React.ReactNode;
}>) {
return (
<html lang="zh-CN">
<html
lang="zh-CN"
className={`${displayFont.variable} ${bodyFont.variable} ${monoFont.variable}`}
>
<body className="app-fonts">
<Providers>{children}</Providers>
</body>