Skip to content

Commit d167558

Browse files
authored
Add Hive Router to PRODUCTS dict (#2070)
1 parent e52bf36 commit d167558

File tree

4 files changed

+27
-0
lines changed

4 files changed

+27
-0
lines changed

.changeset/swift-baboons-peel.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'@theguild/components': minor
3+
---
4+
5+
Add Hive Router to PRODUCTS dict
Lines changed: 11 additions & 0 deletions
Loading

packages/components/src/components/icons/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ export { ReactComponent as YogaIcon } from './yoga.svg';
1616
export { ReactComponent as HiveIcon } from './hive.svg';
1717
export { ReactComponent as HiveGatewayIcon } from './hive-gateway.svg';
1818
export { ReactComponent as StellateIcon } from './stellate.svg';
19+
export { ReactComponent as HiveRouterIcon } from './hive-router.svg';
1920

2021
export { InformationCircleIcon, GitHubIcon, DiscordIcon } from 'nextra/icons';
2122

packages/components/src/products.tsx

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ import {
44
CodegenIcon,
55
HiveGatewayIcon,
66
HiveIcon,
7+
HiveRouterIcon,
78
MeshIcon,
89
StellateIcon,
910
YogaIcon,
@@ -32,6 +33,7 @@ import {
3233
export type ProductType =
3334
| 'HIVE'
3435
| 'HIVE_GATEWAY'
36+
| 'HIVE_ROUTER'
3537
| 'CONDUCTOR'
3638
| 'YOGA'
3739
| 'ENVELOP'
@@ -79,6 +81,14 @@ export const PRODUCTS: Record<ProductType, ProductInfo> = {
7981
logo: HiveGatewayIcon,
8082
primaryColor: '#ffb21d',
8183
},
84+
HIVE_ROUTER: {
85+
name: 'Hive Router',
86+
title:
87+
'Open-source (MIT) GraphQL Federation Router. Built with Rust for maximum performance and robustness.',
88+
href: 'https://github.com/graphql-hive/router',
89+
logo: HiveRouterIcon,
90+
primaryColor: '#ffb21d',
91+
},
8292
MESH: {
8393
name: 'Mesh',
8494
title: 'A fully-featured GraphQL federation framework',

0 commit comments

Comments
 (0)