diff --git a/frontend/src/views/layout/Header.tsx b/frontend/src/views/layout/Header.tsx index 6ede4656..e29fdbd0 100644 --- a/frontend/src/views/layout/Header.tsx +++ b/frontend/src/views/layout/Header.tsx @@ -1,9 +1,7 @@ import AppBar from '@mui/material/AppBar'; import Toolbar from '@mui/material/Toolbar'; import IconButton from '@mui/material/IconButton'; -import Typography from '@mui/material/Typography'; import MenuIcon from '@mui/icons-material/Menu'; -import { HomeOutlined } from '@mui/icons-material'; import { Button, Hidden } from '@mui/material'; import useIsPro from 'auth/useIsPro'; import ProButton from 'components/ProButton'; @@ -18,10 +16,8 @@ import AccountMenu from 'auth/AccountMenu'; import { useTranslation } from 'react-i18next'; import ProPill from 'components/ProPill'; import { AiButton } from './ai/AiButton'; - -const Title = styled(Typography)` - color: white; -`; +import logoIcon from './logo-white.png'; +import logoText from './text-white.png'; export function Header() { const user = useUser(); @@ -45,23 +41,9 @@ export function Header() { > - - - - - - - Retrospected  + + Retrospected Icon + Retrospected @@ -91,16 +73,27 @@ export function Header() { ); } -const MainTitle = styled(Title)` +const MainTitle = styled.div` + display: flex; + align-items: center; + gap: 10px; cursor: pointer; - margin-right: 10px; - @media screen and (max-width: 600px) { - display: none; + margin-left: 10px; + margin-right: 20px; + > :nth-child(2) { + position: relative; + top: 2px; + } + + @media screen and (max-width: 800px) { + > :nth-child(2) { + display: none; + } } -`; -const HomeButton = styled.div` - margin-right: 10px; + @media screen and (max-width: 400px) { + display: none; + } `; const ProPillContainer = styled.div``; diff --git a/frontend/src/views/layout/logo-white.png b/frontend/src/views/layout/logo-white.png new file mode 100644 index 00000000..636f86c7 Binary files /dev/null and b/frontend/src/views/layout/logo-white.png differ diff --git a/frontend/src/views/layout/text-white.png b/frontend/src/views/layout/text-white.png new file mode 100644 index 00000000..62f0fc73 Binary files /dev/null and b/frontend/src/views/layout/text-white.png differ