feat:初始化业务目录

This commit is contained in:
2026-05-08 18:03:43 +08:00
parent 06a4a79fee
commit 765b84e2b4
34 changed files with 5828 additions and 35 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({
@@ -25,9 +27,12 @@ export default function RootLayout({
return (
<html
lang="en"
suppressHydrationWarning
className={`${geistSans.variable} ${geistMono.variable} h-full antialiased`}
>
<body className="min-h-full flex flex-col">{children}</body>
<body className="min-h-full flex flex-col">
<Providers>{children}</Providers>
</body>
</html>
);
}