Skip to content

Commit

Permalink
fix: home logo & footer
Browse files Browse the repository at this point in the history
  • Loading branch information
w84april committed Nov 20, 2024
1 parent 397013e commit 87a482c
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion apps/common/components/ModalMobileMenu.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ export function FooterNav(): ReactElement {
{menu.map(link => (
<Link
className={
'flex items-center justify-between gap-x-4 text-3xl transition-colors hover:text-primary md:justify-start'
'flex items-center justify-between gap-x-4 text-3xl text-white transition-colors hover:text-primary md:justify-start'
}
key={link.path}
target={link.target}
Expand Down
2 changes: 1 addition & 1 deletion apps/common/components/Sidebar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ export function Sidebar(props: TSidebarProps): ReactElement {
<div className={'flex size-6 items-center justify-center'}>
{
iconsDict[
tab.route as '/apps' | 'community-apps' | 'vaults' | 'yearn-x' | 'integrations'
tab.route as 'apps' | 'community-apps' | 'vaults' | 'yearn-x' | 'integrations'
]
}
</div>
Expand Down
4 changes: 2 additions & 2 deletions apps/common/utils/constants.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,7 @@ export const LANDING_SIDEBAR_LINKS = [
];

export const MENU_TABS = [
{title: 'Home', route: '/'},
{title: 'Home', route: 'apps'},
{title: 'Vaults', route: 'vaults'},
{title: 'Community Apps', route: 'community-apps'},
{title: 'Yearn X Projects', route: 'yearn-x'},
Expand All @@ -280,7 +280,7 @@ export const CATEGORY_PAGE_FILTERS = [
];

export const iconsDict = {
'/apps': <IconYearn />,
apps: <IconYearn />,
about: <IconAbout />,
vaults: <IconVaults />,
'community-apps': <IconFrontends />,
Expand Down

0 comments on commit 87a482c

Please sign in to comment.