Skip to content

Commit

Permalink
Update logo on app router
Browse files Browse the repository at this point in the history
  • Loading branch information
ianrohde committed Jan 9, 2024
1 parent 871d9f9 commit 330e179
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions frontend/app/(defaultLayout)/components/page-frame/header.tsx
Original file line number Diff line number Diff line change
@@ -1,9 +1,7 @@
'use client';

import { Wordmark20th } from '@assets/svg/files';
import {
DrawerCloseButton,
Icon,
MenuDivider,
MenuGroup,
MenuList,
Expand Down Expand Up @@ -51,6 +49,7 @@ import {
UserMenuButton,
UserMenuHeading,
UserMenuLink,
Wordmark,
WordmarkLink,
useHeaderContext,
} from '@ifixit/ui';
Expand Down Expand Up @@ -82,7 +81,7 @@ export function Header({ menu }: React.PropsWithChildren<HeaderProps>) {
title="iFixit turns 20"
padding={0}
>
<Icon as={Wordmark20th} width="auto" height="100%" />
<Wordmark />
</WordmarkLink>
{menu && (
<NavigationMenu>
Expand Down Expand Up @@ -204,7 +203,7 @@ function LayoutNavigationDrawer({ menu }: LayoutNavigationDrawerProps) {
title="iFixit turns 20"
padding={0}
>
<Icon as={Wordmark20th} width="auto" height="100%" />
<Wordmark />
</WordmarkLink>
<NavigationAccordion>
{menu.items.map((item, index) => {
Expand Down

0 comments on commit 330e179

Please sign in to comment.