'use server'; import { FC, Suspense } from "react"; import { AuthLayoutProps } from "@/validations/mutual/auth/props"; import LanguageSelectionComponent from "@/components/mutual/languageSelection/component"; const AuthLayout: FC = async ({ lang, page, activePageUrl }) => { return (
WAG Frontend
Welcome to the WAG Frontend Application
Loading...
}>{page}
); } export { AuthLayout };