"use client"; import { AuthGuard } from "@/components/AuthGuard"; import { AccountingLayoutGate } from "@/src/modules/accounting/layout/AccountingLayoutGate"; export default function AccountingLayout({ children }: { children: React.ReactNode }) { return ( {children} ); }