Added in Logo's and worked on Avatars and Chats

This commit is contained in:
Ace
2026-06-17 16:26:32 +02:00
parent 4898bf7142
commit d6d784cef3
19 changed files with 1135 additions and 35 deletions
+6 -1
View File
@@ -1,11 +1,16 @@
"use client"
import { AppShell } from "@/components/layout/app-shell"
import { UserProvider } from "@/providers/user-provider"
export default function DashboardLayout({
children,
}: {
children: React.ReactNode
}) {
return <AppShell>{children}</AppShell>
return (
<UserProvider>
<AppShell>{children}</AppShell>
</UserProvider>
)
}