Skip to content

Commit

Permalink
Merge pull request #499 from apollographql/ms/use-buttonlink-component
Browse files Browse the repository at this point in the history
Replace Link with ButtonLink component
  • Loading branch information
Meschreiber committed Jul 13, 2023
2 parents 3b28d41 + 692f7f7 commit 97e87b8
Showing 1 changed file with 8 additions and 12 deletions.
20 changes: 8 additions & 12 deletions src/content/graphos/basics/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,6 @@ title: Introduction to Apollo GraphOS
description: The GraphQL developer platform
---

import {Link} from 'gatsby';

**Apollo GraphOS** is the platform for building, managing, and scaling a **supergraph**: a network of your microservices and their data sources—all composed into a unified GraphQL API.

```mermaid
Expand All @@ -29,19 +27,18 @@ flowchart LR;
```

<p>
<Button
<ButtonLink
colorScheme="indigo"
to="/graphos/quickstart/cloud/"
as={Link}
href="/graphos/quickstart/cloud/"
style={{
marginRight: '10px'
}}
>
Create your first supergraph!
</Button>
<Button colorScheme="gray" to="/intro/platform/" as={Link}>
</ButtonLink>
<ButtonLink colorScheme="gray" href="/intro/platform/">
What's a supergraph?
</Button>
</ButtonLink>
</p>

## What's in GraphOS?
Expand Down Expand Up @@ -93,13 +90,12 @@ An Enterprise plan also provides access to our Graph Champions community and a d

**Ready to create your first supergraph?**

<Button
<ButtonLink
colorScheme="indigo"
to="/graphos/quickstart/cloud/"
as={Link}
href="/graphos/quickstart/cloud/"
style={{
marginRight: '10px'
}}
>
Get started with GraphOS!
</Button>
</ButtonLink>

0 comments on commit 97e87b8

Please sign in to comment.