1
Fork 0
mirror of https://github.com/pds-nest/nest.git synced 2024-11-22 04:54:18 +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 (
<div className={classNames(Style.PageSettings, className)} {...props}>
<BoxLoggedIn/>
<BoxHeader>
{strings.switchTheme}: <SelectTheme/>
</BoxHeader>
<BoxHeader>
{strings.changeLang}: <SelectLanguage/>
</BoxHeader>
<BoxFull header={strings.alertSettings}>
{strings.notImplemented}
<BoxFull header={strings.changeLang}>
<SelectLanguage/>
</BoxFull>
<BoxFull header={strings.changeEmail}>
{strings.notImplemented}
</BoxFull>
<BoxFull header={strings.changePasswd}>
{strings.notImplemented}
<BoxFull header={strings.switchTheme}>
<SelectTheme/>
</BoxFull>
</div>
)