1
Fork 0
mirror of https://github.com/pds-nest/nest.git synced 2024-11-22 13:04:19 +00:00

🔧 Reorganize settings page

This commit is contained in:
Steffo 2021-05-23 16:20:08 +02:00
parent f734299ac2
commit 3dd139e78b
Signed by: steffo
GPG key ID: 6965406171929D01

View file

@ -15,20 +15,11 @@ export default function PageSettings({ children, className, ...props }) {
return ( return (
<div className={classNames(Style.PageSettings, className)} {...props}> <div className={classNames(Style.PageSettings, className)} {...props}>
<BoxLoggedIn/> <BoxLoggedIn/>
<BoxHeader> <BoxFull header={strings.changeLang}>
{strings.switchTheme}: <SelectTheme/> <SelectLanguage/>
</BoxHeader>
<BoxHeader>
{strings.changeLang}: <SelectLanguage/>
</BoxHeader>
<BoxFull header={strings.alertSettings}>
{strings.notImplemented}
</BoxFull> </BoxFull>
<BoxFull header={strings.changeEmail}> <BoxFull header={strings.switchTheme}>
{strings.notImplemented} <SelectTheme/>
</BoxFull>
<BoxFull header={strings.changePasswd}>
{strings.notImplemented}
</BoxFull> </BoxFull>
</div> </div>
) )