16 lines
450 B
TypeScript

import ChangePassword from './change-password';
import NotifySettings from './notify-settings';
import ThirdPartyAccounts from './third-party-accounts';
export default function Page() {
return (
<div className='flex flex-col gap-4 lg:flex-row lg:flex-wrap lg:*:flex-auto'>
<div className={'flex flex-auto flex-col gap-4'}>
<ThirdPartyAccounts />
<ChangePassword />
</div>
<NotifySettings />
</div>
);
}