diff --git a/package.json b/package.json index 51d8da2..e01bd37 100644 --- a/package.json +++ b/package.json @@ -12,6 +12,7 @@ "@material-ui/icons": "^4.9.1", "@material-ui/lab": "^4.0.0-alpha.55", "@material-ui/pickers": "^3.2.10", + "@svgr/webpack": "^5.5.0", "@types/classnames": "^2.2.10", "@types/node": "^12.0.0", "@types/react": "^16.9.0", diff --git a/public/img/pg-logo.svg b/public/img/pg-logo.svg new file mode 100644 index 0000000..a7c3d65 --- /dev/null +++ b/public/img/pg-logo.svg @@ -0,0 +1,53 @@ + + + + + + image/svg+xml + + + + + + + + + + + + + + diff --git a/src/app.tsx b/src/app.tsx index 95e05e1..dc69b6d 100644 --- a/src/app.tsx +++ b/src/app.tsx @@ -15,6 +15,7 @@ import { getLocale, Locale } from "@/state/reducer/settings"; import i18n from "@/i18n"; import moment from "moment-timezone"; import { Container } from "@material-ui/core"; +import { useCurrentUser } from "@/hooks"; const UserMenu = (props: HTMLProps) => { const student = useSelector(state => state.student as Student); @@ -62,6 +63,7 @@ const LanguageSwitcher = ({ className, ...props }: HTMLProps) function App() { const { t } = useTranslation(); const locale = useSelector(state => getLocale(state.settings)); + const user = useCurrentUser(); useEffect(() => { i18n.changeLanguage(locale); @@ -104,7 +106,7 @@ function App() {