feat: initialize aivideo project

This commit is contained in:
2026-04-17 18:33:05 +08:00
commit 14b18d67fe
162 changed files with 26251 additions and 0 deletions

View File

@@ -0,0 +1,36 @@
import type { Metadata } from "next";
import { Manrope, Space_Grotesk } from "next/font/google";
import { Providers } from "@/components/providers";
import "./globals.css";
const displayFont = Space_Grotesk({
subsets: ["latin"],
variable: "--font-display",
});
const bodyFont = Manrope({
subsets: ["latin"],
variable: "--font-body",
});
export const metadata: Metadata = {
title: "AIVideo",
description: "AI 视频生成平台用户前台",
};
export default function RootLayout({
children,
}: Readonly<{
children: React.ReactNode;
}>) {
return (
<html lang="zh-CN">
<body className={`${displayFont.variable} ${bodyFont.variable}`}>
<Providers>{children}</Providers>
</body>
</html>
);
}