Skip to content

Commit

Permalink
Create the shell of the Profile page #112
Browse files Browse the repository at this point in the history
  • Loading branch information
knightburton committed Feb 10, 2022
1 parent 656d260 commit c402fbd
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 0 deletions.
15 changes: 15 additions & 0 deletions src/components/pages/Profile/index.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
import { useTranslation } from 'react-i18next';
import Container from '@mui/material/Container';
import Title from 'components/core/Title';

const Profile = () => {
const { t } = useTranslation();

return (
<Container maxWidth="lg">
<Title>{t('profile.title')}</Title>
</Container>
);
};

export default Profile;
4 changes: 4 additions & 0 deletions src/localization/en/core.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,10 @@
"forgotPassword": {
"title": "Forgot Password"
},
"profile": {
"title": "Profile",
"description": "Public informations and stats"
},
"account": {
"title": "Account",
"description": "Check or update your preferences",
Expand Down

0 comments on commit c402fbd

Please sign in to comment.