diff --git a/frontend/src/pages/Settings/Profile.jsx b/frontend/src/pages/Settings/Profile.jsx index 95bc9a4..c7a28a0 100644 --- a/frontend/src/pages/Settings/Profile.jsx +++ b/frontend/src/pages/Settings/Profile.jsx @@ -1,28 +1,40 @@ -import { Card, Container, Flex, Group, Image, Stack, Text, Title } from '@mantine/core' import React from 'react' +import { Avatar, Card, Container, Flex, Grid, Group, Image, Stack, Text, TextInput, Title } from '@mantine/core' +import { getUserData } from '../../../utils/auth' const Profile = () => { + let { username } = getUserData() return ( - - + + + + {username[0].toUpperCase()} + +
- username + {username} - full name + {'-------'} city
- - -
- username - - full name - city - -
+ + + + + + + + + + + + + + +
)