project init

This commit is contained in:
2025-12-01 02:29:08 +01:00
commit 78a0f6c646
106 changed files with 13132 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
"use client"
import type React from "react"
import { AuthProvider } from "@/lib/auth-context"
import { DataStoreProvider } from "@/lib/data-store"
export default function AdminLayout({
children,
}: {
children: React.ReactNode
}) {
return (
<AuthProvider>
<DataStoreProvider>{children}</DataStoreProvider>
</AuthProvider>
)
}