diff --git a/src/views/home/home.module.css b/src/views/home/home.module.css index 234b90b9..6211db12 100644 --- a/src/views/home/home.module.css +++ b/src/views/home/home.module.css @@ -152,6 +152,22 @@ text-transform: capitalize; } +.version { + text-align: center; + padding-top: 2em; + padding-bottom: 1em; + font-size: 11px; +} + +.version a { + text-decoration: none; + color: unset; +} + +.version a:hover { + text-decoration: underline; +} + @media (max-width: 640px) { .content { min-width: 0; diff --git a/src/views/home/home.tsx b/src/views/home/home.tsx index 69b902b1..faaf39c0 100644 --- a/src/views/home/home.tsx +++ b/src/views/home/home.tsx @@ -151,53 +151,73 @@ const downloadAppLink = (() => { } })(); +const isElectron = window.isElectron === true; +const commitRef = process.env.REACT_APP_COMMIT_REF; + const Footer = () => { const { t } = useTranslation(); return ( -