From c402fbd34902a20f221e22ff063b6338ac849d23 Mon Sep 17 00:00:00 2001 From: Imre Kiss Date: Thu, 10 Feb 2022 21:19:39 +0100 Subject: [PATCH] Create the shell of the Profile page #112 --- src/components/pages/Profile/index.tsx | 15 +++++++++++++++ src/localization/en/core.json | 4 ++++ 2 files changed, 19 insertions(+) create mode 100644 src/components/pages/Profile/index.tsx diff --git a/src/components/pages/Profile/index.tsx b/src/components/pages/Profile/index.tsx new file mode 100644 index 0000000..08246c7 --- /dev/null +++ b/src/components/pages/Profile/index.tsx @@ -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 ( + + {t('profile.title')} + + ); +}; + +export default Profile; diff --git a/src/localization/en/core.json b/src/localization/en/core.json index 79fe418..af05d4a 100644 --- a/src/localization/en/core.json +++ b/src/localization/en/core.json @@ -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",