Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Link to specific documentation page in survey section #772

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/components/sections/features.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ export const Features = () => {
application, your package.json will have never been this small.
</p>
<Checklist items={['Data validation & serialization', 'Frameworks for CLI & HTTP applications', 'Powerful abstractions for every platform']} />
<Button href="/docs" secondary className="mt-10">
<Button href="/docs/other/api-reference" secondary className="mt-10">
Read documentation
</Button>
</div>
Expand All @@ -46,7 +46,7 @@ export const Features = () => {
Successfully handle failure with the built-in error-handling primitives.
</p>
<Checklist items={['Type-safe errors as values', 'Powerful retry & recovery APIs', 'Tools for logging & tracing']} />
<Button href="/docs" secondary className="mt-10">
<Button href="/docs/guides/error-management" secondary className="mt-10">
Read documentation
</Button>
</div>
Expand Down
8 changes: 4 additions & 4 deletions src/components/sections/js-survey.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,11 @@ to make building applications easier.
{
name: "4. Immutable Data Structures",
value: 8243,
docsLink: "/docs"
docsLink: "/docs/other/data-types"
},
{ name: "5. Observable", value: 6515, docsLink: "/docs" },
{ name: "6. Pipe Operator", value: 5860, docsLink: "/docs" },
{ name: "8. Pattern Matching", value: 4872, docsLink: "/docs" }
{ name: "5. Observable", value: 6515, docsLink: "/docs/guides/streaming/stream/introduction" },
{ name: "6. Pipe Operator", value: 5860, docsLink: "/docs/guides/essentials/pipeline" },
{ name: "8. Pattern Matching", value: 4872, docsLink: "/docs/guides/style/pattern-matching" }
]
}
}
Expand Down