Change Audiens

This commit is contained in:
Randa Firman Putra
2025-06-28 06:15:50 +07:00
parent baf9965d64
commit 37d083ec31
18 changed files with 906 additions and 318 deletions

9
app/dashboard/layout.tsx Normal file
View File

@@ -0,0 +1,9 @@
import ClientLayout from '@/components/ClientLayout';
export default function DashboardLayout({
children,
}: {
children: React.ReactNode;
}) {
return <ClientLayout>{children}</ClientLayout>;
}