diff --git a/src/components/root/About.js b/src/components/root/About.js
index ba8c6154..f7c1d904 100644
--- a/src/components/root/About.js
+++ b/src/components/root/About.js
@@ -3,60 +3,96 @@ import { useTranslation } from 'react-i18next';
import Box from '@mui/material/Box';
import Dialog from '@mui/material/Dialog';
import DialogContent from '@mui/material/DialogContent';
+import Link from '@mui/material/Link';
import Typography from '@mui/material/Typography';
import { isAboutOpenState } from '../../appStates/appSettings';
const About = () => {
- const { t } = useTranslation();
+ const { t } = useTranslation();
- const [isOpen, setIsOpen] = useRecoilState(isAboutOpenState);
+ const [isOpen, setIsOpen] = useRecoilState(isAboutOpenState);
- const appVersion = process.env.REACT_APP_VERSION;
+ const appVersion = process.env.REACT_APP_VERSION;
- const handleClose = () => {
- setIsOpen(false);
- }
+ const handleClose = () => {
+ setIsOpen(false);
+ };
- return (
-
- );
-}
-
-export default About;
\ No newline at end of file
+ return (
+
+ );
+};
+
+export default About;