import { PageLayout } from '../../components/_shared/PageLayout' import { AuthGuard } from '../../components/AuthGuard' import { ProfileSettings } from '../../components/ProfileSettings' import { useLocalize } from '../../context/localize' import { ProfileFormProvider } from '../../context/profile' export const ProfileSettingsPage = () => { const { t } = useLocalize() return ( ) } export const Page = ProfileSettingsPage