Skip to content

Commit

Permalink
Add Stellate to PRODUCTS (#1872)
Browse files Browse the repository at this point in the history
  • Loading branch information
hasparus authored Dec 12, 2024
1 parent 8a38ca4 commit 070769e
Show file tree
Hide file tree
Showing 4 changed files with 42 additions and 3 deletions.
5 changes: 5 additions & 0 deletions .changeset/fifty-cobras-crash.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@theguild/components": minor
---

Add Stellate to PRODUCTS
1 change: 1 addition & 0 deletions packages/components/src/components/icons/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ export { ReactComponent as MeshIcon } from './mesh.svg';
export { ReactComponent as YogaIcon } from './yoga.svg';
export { ReactComponent as HiveIcon } from './hive.svg';
export { ReactComponent as HiveGatewayIcon } from './hive-gateway.svg';
export { ReactComponent as StellateIcon } from './stellate.svg';

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

Expand Down
18 changes: 18 additions & 0 deletions packages/components/src/components/icons/stellate.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
21 changes: 18 additions & 3 deletions packages/components/src/products.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,14 @@
import { FC, HTMLProps, SVGProps } from 'react';
import { MenuItem } from 'nextra/normalize-pages';
import { cn } from './cn';
import { CodegenIcon, HiveGatewayIcon, HiveIcon, MeshIcon, YogaIcon } from './components/icons';
import {
CodegenIcon,
HiveGatewayIcon,
HiveIcon,
MeshIcon,
StellateIcon,
YogaIcon,
} from './components/icons';
import {
AngularLogo,
ConductorLogo,
Expand Down Expand Up @@ -46,7 +53,8 @@ export type ProductType =
| 'WS'
| 'FETS'
| 'HELTIN'
| 'NEXTRA';
| 'NEXTRA'
| 'STELLATE';

export interface ProductInfo {
name: string;
Expand All @@ -59,7 +67,7 @@ export interface ProductInfo {
export const PRODUCTS: Record<ProductType, ProductInfo> = {
HIVE: {
name: 'Hive',
title: 'Open Source GraphQL Federation Platform (Schema Registry, Gateway, Analytics) ',
title: 'Open Source GraphQL Federation Platform (Schema Registry, Gateway, Analytics)',
href: 'https://the-guild.dev/graphql/hive',
logo: HiveIcon,
primaryColor: '#ffb21d',
Expand Down Expand Up @@ -221,6 +229,13 @@ export const PRODUCTS: Record<ProductType, ProductInfo> = {
logo: NextraLogo,
primaryColor: '#000',
},
STELLATE: {
name: 'Stellate',
title: 'The GraphQL Edge Platform for security, caching, and observability',
href: 'https://stellate.co',
logo: StellateIcon,
primaryColor: '#FF7752',
},
};

export const FOUR_MAIN_PRODUCTS = [
Expand Down

0 comments on commit 070769e

Please sign in to comment.