This commit is contained in:
Kamil Kisiela 2024-11-13 13:57:58 +01:00 committed by GitHub
parent 33867cc099
commit afe09f3d9d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 4 additions and 6 deletions

View file

@ -49,10 +49,7 @@ export function EcosystemManagementSection({ className }: { className?: string }
Get started with Federation
<ArrowIcon />
</CallToAction>
<CallToAction
href="https://the-guild.dev/graphql/hive/docs/use-cases/apollo-studio"
variant="secondary"
>
<CallToAction href="/docs/use-cases/apollo-studio" variant="secondary">
<BookIcon />
Migrate from Apollo GraphOS
</CallToAction>

View file

@ -1,5 +1,6 @@
import { useState } from 'react';
import Image, { StaticImageData } from 'next/image';
import NextLink from 'next/link';
import { ChevronDownIcon } from '@radix-ui/react-icons';
import * as Tabs from '@radix-ui/react-tabs';
import { CallToAction, Heading } from '@theguild/components';
@ -264,7 +265,7 @@ function Feature(props: {
{highlights.map((highlight, i) => {
if (highlight.link) {
return (
<a
<NextLink
href={highlight.link}
key={i}
title={'Learn more about ' + highlight.title}
@ -273,7 +274,7 @@ function Feature(props: {
>
<dt className="text-green-1000 font-medium">{highlight.title}</dt>
<dd className="mt-2 text-sm leading-5 text-green-800">{highlight.description}</dd>
</a>
</NextLink>
);
}