diff --git a/src/app/dashboard/layout.tsx b/src/app/dashboard/layout.tsx new file mode 100644 index 0000000..def2c51 --- /dev/null +++ b/src/app/dashboard/layout.tsx @@ -0,0 +1,11 @@ +import type { ReactNode } from 'react' + +import ApiCodeGuard from '@/components/auth/ApiCodeGuard' + +export default function DashboardLayout({ children }: { children: ReactNode }) { + return ( + + {children} + + ) +}