diff --git a/apps/web/src/app/[locale]/auth/layout.tsx b/apps/web/src/app/[locale]/auth/layout.tsx index 426a662..cb880a3 100644 --- a/apps/web/src/app/[locale]/auth/layout.tsx +++ b/apps/web/src/app/[locale]/auth/layout.tsx @@ -1,35 +1,98 @@ -import { getTranslation } from "@turbostarter/i18n/server"; -import { Icons } from "@turbostarter/ui-web/icons"; +import Link from "next/link"; -import { pathsConfig } from "~/config/paths"; -import { TurboLink } from "~/modules/common/turbo-link"; - -export default async function AuthLayout({ +export default function AuthLayout({ children, }: { children: React.ReactNode; }) { - const { t } = await getTranslation({ ns: "common" }); - return ( -
-
-
- +
+
+ - - - + + + + + + + + + claudemesh + +
-
- {children} -
+
{children}
- +
); }