feat:初始化业务目录

This commit is contained in:
2026-05-09 10:36:20 +08:00
parent 881506655d
commit 56951c0383
60 changed files with 6955 additions and 184 deletions

View File

@@ -1,5 +1,7 @@
import type { Metadata } from "next";
import { Geist, Geist_Mono } from "next/font/google";
import { Providers } from "@/components/providers";
import "./globals.css";
const geistSans = Geist({
@@ -13,8 +15,11 @@ const geistMono = Geist_Mono({
});
export const metadata: Metadata = {
title: "Create Next App",
description: "Generated by create next app",
title: {
template: "%s · 彩票后台",
default: "彩票后台",
},
description: "Lottery 管理端",
};
export default function RootLayout({
@@ -24,10 +29,13 @@ export default function RootLayout({
}>) {
return (
<html
lang="en"
lang="zh-Hans"
suppressHydrationWarning
className={`${geistSans.variable} ${geistMono.variable} h-full antialiased`}
>
<body className="min-h-full flex flex-col">{children}</body>
<body className="flex min-h-full flex-col">
<Providers>{children}</Providers>
</body>
</html>
);
}