Skip to content

Commit

Permalink
fix: menu
Browse files Browse the repository at this point in the history
  • Loading branch information
Majorfi committed Aug 7, 2024
1 parent b2ab85e commit bf7d261
Showing 1 changed file with 13 additions and 3 deletions.
16 changes: 13 additions & 3 deletions apps/common/utils/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,14 @@ export const FEATURED_APPS = [
}
];

export const ALL_APPS = [...FEATURED_APPS, ...FRONTENDS_APPS, ...YEARN_X_APPS];
export const ALL_APPS = [
...FEATURED_APPS,
...FRONTENDS_APPS,
...LOCKERS_APPS,
...YEARN_X_APPS,
...POOLS_APPS,
...INTEGRATIONS_APPS
];

export const CATEGORIES_DICT = {
'featured-apps': {
Expand Down Expand Up @@ -230,8 +237,11 @@ export const LANDING_SIDEBAR_LINKS = [

export const MENU_TABS = [
{title: 'Home', route: '/'},
{title: 'Community Apps', route: 'community'},
{title: 'Yearn X Projects', route: 'yearn-x'}
{title: 'Frontends', route: 'frontends'},
{title: 'Lockers', route: 'lockers'},
{title: 'Pools', route: 'pools'},
{title: 'Yearn X Projects', route: 'yearn-x'},
{title: 'Integrations', route: 'integrations'}
];

export const CATEGORY_PAGE_FILTERS = [
Expand Down

0 comments on commit bf7d261

Please sign in to comment.