Init(Coore): add to repo

This commit is contained in:
2026-04-24 16:20:36 +03:30
commit 893cdcb89c
91 changed files with 13751 additions and 0 deletions

11
app/providers.js Executable file
View File

@@ -0,0 +1,11 @@
'use client'
import {NextUIProvider} from '@nextui-org/react'
export function Providers({children}) {
return (
<NextUIProvider>
{children}
</NextUIProvider>
)
}