diff --git a/src/js/components/SiteHeader.tsx b/src/js/components/SiteHeader.tsx index c888f4d9..6e627022 100644 --- a/src/js/components/SiteHeader.tsx +++ b/src/js/components/SiteHeader.tsx @@ -7,6 +7,8 @@ import { useAppSelector } from '@/hooks'; import { useNavigate, useLocation } from 'react-router-dom'; import { useIsAuthenticated, usePerformAuth, usePerformSignOut } from 'bento-auth-js'; import { CLIENT_NAME, PORTAL_URL, TRANSLATED } from '@/config'; +import { RiTranslate } from 'react-icons/ri'; +import { LinkOutlined, LoginOutlined, LogoutOutlined } from '@ant-design/icons'; const openPortalWindow = () => window.open(PORTAL_URL, '_blank'); @@ -56,22 +58,28 @@ const SiteHeader = () => { - + {TRANSLATED && ( - )} - {isAuthenticated ? ( - ) : ( // diff --git a/src/styles.css b/src/styles.css index c5dbaf89..574791e6 100644 --- a/src/styles.css +++ b/src/styles.css @@ -11,3 +11,10 @@ body { margin: auto; } +.headerButton { + color: lightgray; +} + +.headerButton:hover { + color: white !important; +} \ No newline at end of file