建立檔案

This commit is contained in:
2025-08-05 08:22:44 +08:00
commit 042d03aff7
122 changed files with 34763 additions and 0 deletions

33
app/layout.tsx Normal file
View File

@@ -0,0 +1,33 @@
import type React from "react"
import { Inter } from "next/font/google"
import "./globals.css"
import { AuthProvider } from "@/contexts/auth-context"
import { CompetitionProvider } from "@/contexts/competition-context"
import { Toaster } from "@/components/ui/toaster"
import { ChatBot } from "@/components/chat-bot"
const inter = Inter({ subsets: ["latin"] })
export default function RootLayout({
children,
}: {
children: React.ReactNode
}) {
return (
<html lang="zh-TW">
<body className={inter.className}>
<AuthProvider>
<CompetitionProvider>
{children}
<Toaster />
<ChatBot />
</CompetitionProvider>
</AuthProvider>
</body>
</html>
)
}
export const metadata = {
generator: 'v0.dev'
};