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

31 lines
953 B
TypeScript
Raw Normal View History

2021-12-28 16:06:58 +01:00
import { NextPage } from 'next'
2022-03-16 12:18:09 +01:00
import { Head } from '../../../components/Head'
import { Application } from '../../../components/Application'
import {
authenticationFromServerSide,
AuthenticationProvider,
PagePropsWithAuthentication
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) => {
return (
<AuthenticationProvider authentication={props.authentication}>
<GuildsProvider>
<Head title='Thream | Settings' />
<Application path={`/application/users/settings`} title='Settings'>
<UserSettings />
</Application>
</GuildsProvider>
</AuthenticationProvider>
)
}
export const getServerSideProps = authenticationFromServerSide({
shouldBeAuthenticated: true
})
2022-01-14 23:15:51 +01:00
export default UserSettingsPage