mirror of
https://github.com/graphql-hive/console
synced 2026-05-23 09:08:34 +00:00
Add /partners to landing pages list (#6134)
This commit is contained in:
parent
1683bdc8e5
commit
b69ceef85b
1 changed files with 8 additions and 1 deletions
|
|
@ -16,5 +16,12 @@ export function NavigationMenu(props: ComponentPropsWithoutRef<typeof Navbar>) {
|
|||
);
|
||||
}
|
||||
|
||||
const landingLikePages = ['/', '/pricing', '/federation', '/oss-friends', '/ecosystem'];
|
||||
const landingLikePages = [
|
||||
'/',
|
||||
'/pricing',
|
||||
'/federation',
|
||||
'/oss-friends',
|
||||
'/ecosystem',
|
||||
'/partners',
|
||||
];
|
||||
export const isLandingPage = (route: string) => landingLikePages.includes(route);
|
||||
|
|
|
|||
Loading…
Reference in a new issue