2
2
mirror of https://github.com/Thream/website.git synced 2024-07-21 09:28:32 +02:00
website/pages/application/users/settings.tsx

37 lines
1.1 KiB
TypeScript
Raw Normal View History

2022-08-31 21:44:33 +02:00
import type { NextPage } from 'next'
2022-04-09 11:33:28 +02:00
import useTranslation from 'next-translate/useTranslation'
2021-12-28 16:06:58 +01:00
2022-03-16 12:18:09 +01:00
import { Head } from '../../../components/Head'
import { Application } from '../../../components/Application'
2022-08-31 21:44:33 +02:00
import type { PagePropsWithAuthentication } from '../../../tools/authentication'
import {
authenticationFromServerSide,
2022-08-31 21:44:33 +02:00
AuthenticationProvider
2022-03-16 12:18:09 +01:00
} from '../../../tools/authentication'
import { UserSettings } from '../../../components/Application/UserSettings'
import { GuildsProvider } from '../../../contexts/Guilds'
2022-01-14 23:15:51 +01:00
const UserSettingsPage: NextPage<PagePropsWithAuthentication> = (props) => {
2022-04-09 11:33:28 +02:00
const { t } = useTranslation()
return (
<AuthenticationProvider authentication={props.authentication}>
<GuildsProvider>
2022-04-09 11:33:28 +02:00
<Head title={`Thream | ${t('application:user-settings')}`} />
<Application
path='/application/users/settings'
title={t('application:user-settings')}
>
<UserSettings />
</Application>
</GuildsProvider>
</AuthenticationProvider>
)
}
export const getServerSideProps = authenticationFromServerSide({
shouldBeAuthenticated: true
})
2022-01-14 23:15:51 +01:00
export default UserSettingsPage