Skip to content

Commit 0fd5af9

Browse files
committed
fix(nxdev): broken links on home pages
1 parent 8b1f812 commit 0fd5af9

File tree

7 files changed

+8
-8
lines changed

7 files changed

+8
-8
lines changed

nx-dev/nx-dev/pages/angular.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@ export function AngularPage() {
189189
dependency graphs, and much, much more.
190190
</p>
191191
<div className="inline-flex">
192-
<Link href="/latest/anguar/tutorial/01-create-application">
192+
<Link href="/latest/angular/tutorial/01-create-application">
193193
<a className="inline-flex items-center font-bold group">
194194
<span className="group-hover:underline">
195195
Nx Angular App Tutorial
@@ -429,7 +429,7 @@ export function AngularPage() {
429429
</h2>
430430
<div className="mt-8 flex lg:mt-0 lg:flex-shrink-0">
431431
<div className="inline-flex rounded-md shadow">
432-
<Link href="/latest/angular/getting-started/getting-started">
432+
<Link href="/latest/angular/getting-started/intro">
433433
<a className="inline-flex items-center justify-center px-5 py-3 border border-transparent text-base font-medium rounded-md text-gray-700 bg-white">
434434
Get started with Angular
435435
</a>

nx-dev/nx-dev/pages/community.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -289,7 +289,7 @@ export function Community(props: CommunityProps) {
289289
</h2>
290290
<div className="mt-8 flex lg:mt-0 lg:flex-shrink-0">
291291
<div className="inline-flex rounded-md shadow">
292-
<Link href="/latest/node/getting-started/getting-started">
292+
<Link href="/latest/node/getting-started/intro">
293293
<a className="inline-flex items-center justify-center px-5 py-3 border border-transparent text-base font-medium rounded-md text-white bg-blue-nx-base">
294294
Get started with Node
295295
</a>

nx-dev/nx-dev/pages/node.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -239,7 +239,7 @@ export function Node() {
239239
building Node applications.
240240
</p>
241241
<div className="inline-flex rounded-md shadow">
242-
<Link href="/latest/node/getting-started/getting-started">
242+
<Link href="/latest/node/getting-started/intro">
243243
<a className="inline-flex items-center justify-center px-5 py-2 border border-transparent text-base font-medium rounded-md text-gray-700 bg-white">
244244
Nx Node Doc
245245
</a>

nx-dev/nx-dev/pages/react.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -458,7 +458,7 @@ export function ReactPage() {
458458
</h2>
459459
<div className="mt-8 flex lg:mt-0 lg:flex-shrink-0">
460460
<div className="inline-flex rounded-md shadow">
461-
<Link href="/latest/react/getting-started/getting-started">
461+
<Link href="/latest/react/getting-started/intro">
462462
<a className="inline-flex items-center justify-center px-5 py-3 border border-transparent text-base font-medium rounded-md text-gray-700 bg-white">
463463
Get started with React
464464
</a>

nx-dev/nx-dev/public/documentation/previous/react/migration/migration-cra.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Just `cd` into your Create-React-App (CRA) project and run the following command
1414
npx cra-to-nx
1515
```
1616

17-
Then just sit back and wait. After a while you will be able to take advantage of the [full magic of Nx](https://nx.dev/latest/react/getting-started/getting-started). You can start from [the commands mentioned in this article](https://nx.dev/latest/react/migration/migration-cra#try-nx).
17+
Then just sit back and wait. After a while you will be able to take advantage of the [full magic of Nx](https://nx.dev/latest/react/getting-started/intro). You can start from [the commands mentioned in this article](https://nx.dev/latest/react/migration/migration-cra#try-nx).
1818

1919
**Note:** The command will fail if you try execute it and you have uncommitted changes in your repository. Commit any local changes, and then try to run the command.
2020

packages/angular/src/generators/application/lib/nrwl-home-tpl.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ export const nrwlHomeTemplate = {
3232
<li class="col-span-2">
3333
<a
3434
class="resource flex"
35-
href="https://nx.dev/latest/angular/getting-started/getting-started"
35+
href="https://nx.dev/latest/angular/getting-started/intro"
3636
>
3737
Nx video tutorial
3838
</a>

packages/web/src/generators/application/files/app/src/app/app.element.ts__tmpl__

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ export class AppElement extends HTMLElement {
3939
<li class="col-span-2">
4040
<a
4141
class="resource flex"
42-
href="https://nx.dev/latest/react/getting-started/getting-started">
42+
href="https://nx.dev/latest/react/getting-started/intro">
4343
Nx video tutorial
4444
</a>
4545
</li>

0 commit comments

Comments
 (0)