This commit is contained in:
eric
2026-03-13 04:41:51 -05:00
parent 37d0883ce9
commit a193fe4d45
22 changed files with 1119 additions and 468 deletions

View File

@@ -3,6 +3,7 @@ import "@fontsource-variable/geist";
import "@fontsource-variable/geist-mono";
import "./globals.css";
import { ThemeProvider } from "./context/ThemeContext";
import { PayStatusPollProvider } from "./components/PayStatusPollProvider";
import { getThemeConfig } from "@/config";
export const viewport: Viewport = {
@@ -49,7 +50,10 @@ export default function RootLayout({
<html lang="zh-CN" suppressHydrationWarning>
<body className="antialiased font-sans">
<ThemeScript />
<ThemeProvider>{children}</ThemeProvider>
<ThemeProvider>
<PayStatusPollProvider />
{children}
</ThemeProvider>
</body>
</html>
);