import { getTranslation } from "@turbostarter/i18n/server"; import { Icons } from "@turbostarter/ui-web/icons"; import { pathsConfig } from "~/config/paths"; import { TurboLink } from "~/modules/common/turbo-link"; export default async function AuthLayout({ children, }: { children: React.ReactNode; }) { const { t } = await getTranslation({ ns: "common" }); return (
{children}
); }