Skip to content

Commit 070769e

Browse files
authored
Add Stellate to PRODUCTS (#1872)
1 parent 8a38ca4 commit 070769e

File tree

4 files changed

+42
-3
lines changed

4 files changed

+42
-3
lines changed

.changeset/fifty-cobras-crash.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 Stellate to PRODUCTS

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 MeshIcon } from './mesh.svg';
1616
export { ReactComponent as YogaIcon } from './yoga.svg';
1717
export { ReactComponent as HiveIcon } from './hive.svg';
1818
export { ReactComponent as HiveGatewayIcon } from './hive-gateway.svg';
19+
export { ReactComponent as StellateIcon } from './stellate.svg';
1920

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

Lines changed: 18 additions & 0 deletions
Loading

packages/components/src/products.tsx

Lines changed: 18 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,14 @@
11
import { FC, HTMLProps, SVGProps } from 'react';
22
import { MenuItem } from 'nextra/normalize-pages';
33
import { cn } from './cn';
4-
import { CodegenIcon, HiveGatewayIcon, HiveIcon, MeshIcon, YogaIcon } from './components/icons';
4+
import {
5+
CodegenIcon,
6+
HiveGatewayIcon,
7+
HiveIcon,
8+
MeshIcon,
9+
StellateIcon,
10+
YogaIcon,
11+
} from './components/icons';
512
import {
613
AngularLogo,
714
ConductorLogo,
@@ -46,7 +53,8 @@ export type ProductType =
4653
| 'WS'
4754
| 'FETS'
4855
| 'HELTIN'
49-
| 'NEXTRA';
56+
| 'NEXTRA'
57+
| 'STELLATE';
5058

5159
export interface ProductInfo {
5260
name: string;
@@ -59,7 +67,7 @@ export interface ProductInfo {
5967
export const PRODUCTS: Record<ProductType, ProductInfo> = {
6068
HIVE: {
6169
name: 'Hive',
62-
title: 'Open Source GraphQL Federation Platform (Schema Registry, Gateway, Analytics) ',
70+
title: 'Open Source GraphQL Federation Platform (Schema Registry, Gateway, Analytics)',
6371
href: 'https://the-guild.dev/graphql/hive',
6472
logo: HiveIcon,
6573
primaryColor: '#ffb21d',
@@ -221,6 +229,13 @@ export const PRODUCTS: Record<ProductType, ProductInfo> = {
221229
logo: NextraLogo,
222230
primaryColor: '#000',
223231
},
232+
STELLATE: {
233+
name: 'Stellate',
234+
title: 'The GraphQL Edge Platform for security, caching, and observability',
235+
href: 'https://stellate.co',
236+
logo: StellateIcon,
237+
primaryColor: '#FF7752',
238+
},
224239
};
225240

226241
export const FOUR_MAIN_PRODUCTS = [

0 commit comments

Comments
 (0)