Skip to content

Commit

Permalink
fix(nx-dev): bad link from home page (#27475)
Browse files Browse the repository at this point in the history
Fixes #27417
  • Loading branch information
isaacplmann authored Aug 16, 2024
1 parent 0b2f452 commit e7a9f36
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion nx-dev/ui-common/src/lib/call-to-action.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ export interface CTAProps {
export function CallToAction({
mainActionTitle = 'Get started with Nx',
mainActionLinkText = 'Get started',
mainActionLink = '/docs',
mainActionLink = '/getting-started/intro',
}: CTAProps): JSX.Element {
return (
<section className="relative isolate px-6 py-32 sm:py-40 lg:px-8">
Expand Down
2 changes: 1 addition & 1 deletion nx-dev/ui-home/src/lib/team-and-community.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ export function TeamAndCommunity(): JSX.Element {
<div className="group/item relative flex items-center gap-2 rounded-xl border border-slate-100 p-4 transition hover:text-slate-950 dark:border-slate-800/60 dark:hover:text-white">
<DocumentIcon aria-hidden="true" className="size-6 shrink-0" />
<Link
href="/docs?utm_medium=website&utm_campaign=homepage_links&utm_content=cta_team_and_community"
href="/getting-started/intro?utm_medium=website&utm_campaign=homepage_links&utm_content=cta_team_and_community"
className="grow text-base"
prefetch={false}
>
Expand Down

0 comments on commit e7a9f36

Please sign in to comment.