mirror of
https://github.com/graphql-hive/console
synced 2026-05-24 09:38:26 +00:00
Point people from /federation to Hive and Crisp (#6078)
This commit is contained in:
parent
b4e32146dd
commit
506740c9c3
1 changed files with 19 additions and 1 deletions
|
|
@ -4,7 +4,7 @@ import { Anchor, CallToAction, Heading } from '@theguild/components';
|
|||
import { cn } from '../lib';
|
||||
import { ArrowIcon } from './arrow-icon';
|
||||
import { FrequentlyAskedFederationQuestions } from './frequently-asked-questions';
|
||||
import { Hero } from './hero';
|
||||
import { Hero, HeroLinks } from './hero';
|
||||
import { InfoCard } from './info-card';
|
||||
import { Page } from './page';
|
||||
import federationDiagram from '../../public/federation-diagram.png';
|
||||
|
|
@ -30,6 +30,24 @@ export function FederationPage(): ReactElement {
|
|||
into one unified API (supergraph), and serve data from a single endpoint using a GraphQL
|
||||
gateway.
|
||||
</p>
|
||||
<HeroLinks>
|
||||
<CallToAction
|
||||
variant="primary-inverted"
|
||||
href="/"
|
||||
title="Learn about our Open-Source GraphQL Federation Solution - Hive"
|
||||
>
|
||||
Try Hive for Federation
|
||||
</CallToAction>
|
||||
<CallToAction
|
||||
variant="secondary"
|
||||
title="Contact our experts to learn more about GraphQL Federation"
|
||||
onClick={() => {
|
||||
(window as any).$crisp?.push(['do', 'chat:open']);
|
||||
}}
|
||||
>
|
||||
Contact an Expert
|
||||
</CallToAction>
|
||||
</HeroLinks>
|
||||
</Hero>
|
||||
<Intro />
|
||||
<WhyFederation />
|
||||
|
|
|
|||
Loading…
Reference in a new issue