mirror of
https://github.com/graphql-hive/console
synced 2026-05-22 16:48:56 +00:00
Fix links (#5926)
This commit is contained in:
parent
33867cc099
commit
afe09f3d9d
2 changed files with 4 additions and 6 deletions
|
|
@ -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>
|
||||
|
|
|
|||
|
|
@ -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>
|
||||
);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue