diff --git a/frontend/components/Header.tsx b/frontend/components/Header.tsx index c1516494..0b3c949a 100644 --- a/frontend/components/Header.tsx +++ b/frontend/components/Header.tsx @@ -3,9 +3,9 @@ import { FullUser } from "../utils/api_types.ts"; import { GlobalSearch } from "../islands/GlobalSearch.tsx"; import { UserMenu } from "../islands/UserMenu.tsx"; -import { Logo } from "./Logo.tsx"; import { GitHub } from "./icons/GitHub.tsx"; import { SearchKind } from "../util.ts"; +import { HeaderLogo } from "../islands/HeaderLogo.tsx"; export function Header({ user, @@ -52,15 +52,17 @@ export function Header({ }`} >
- {isHomepage ?
: ( - - JSR home - - - )} +
+ {!isHomepage && ( + + JSR home + + + )} +
+ ); +}