first commit

This commit is contained in:
2026-03-10 11:45:54 +08:00
commit e06d464a74
231 changed files with 15232 additions and 0 deletions

14
web/src/providers.tsx Normal file
View File

@@ -0,0 +1,14 @@
// import { ThemeProvider } from "next-themes";
// import { HeroUIProvider, ToastProvider } from '@heroui/react'
export function Providers( { children }: { children: React.ReactNode } ) {
return (
// <HeroUIProvider>
// <ThemeProvider attribute="class" defaultTheme="dark">
// <ToastProvider />
{children}
// </ThemeProvider>
// </HeroUIProvider>
);
}