Updated profile page.

This commit is contained in:
Mike Cao 2024-02-04 23:55:14 -08:00
parent 6802093d69
commit 8bcea84409
4 changed files with 15 additions and 7 deletions

View file

@ -19,7 +19,7 @@ export function ProfileSettings() {
const { username, role } = user;
const renderRole = value => {
const renderRole = (value: string) => {
if (value === ROLES.user) {
return formatMessage(labels.user);
}

View file

@ -0,0 +1,9 @@
.container {
margin: 0 auto;
}
@media screen and (max-width: 768px) {
.container {
margin: 0;
}
}

View file

@ -1,13 +1,14 @@
import ProfileHeader from './ProfileHeader';
import ProfileSettings from './ProfileSettings';
import { Metadata } from 'next';
import styles from './page.module.css';
export default function () {
return (
<>
<div className={styles.container}>
<ProfileHeader />
<ProfileSettings />
</>
</div>
);
}