diff --git a/src/components/TitleBar.tsx b/src/components/TitleBar.tsx index e2f4dc391..209343395 100644 --- a/src/components/TitleBar.tsx +++ b/src/components/TitleBar.tsx @@ -18,8 +18,24 @@ const TitleBarContainer = styled.div` `; const TitleText = styled.div` + display: flex; + align-items: center; + gap: 4px; font-weight: normal; letter-spacing: 0.5px; +`; + +const CmuxLink = styled.a` + color: inherit; + text-decoration: none; + cursor: pointer; + + &:hover { + text-decoration: underline; + } +`; + +const VersionText = styled.span` user-select: text; cursor: text; `; @@ -57,7 +73,15 @@ export function TitleBar() { return ( - cmux {VERSION.git_describe} + + + + cmux + + Documentation (cmux.io) + + {VERSION.git_describe} + {buildDate} Built at {extendedTimestamp}