Skip to content
This repository has been archived by the owner on Oct 23, 2023. It is now read-only.

Commit

Permalink
fix: add correct links to docs (#806)
Browse files Browse the repository at this point in the history
  • Loading branch information
yuzl authored and maltejanosch committed Jun 27, 2019
1 parent 1aa17b6 commit d0ca678
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 12 deletions.
6 changes: 0 additions & 6 deletions docs/guides-design/design-drafts.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,3 @@ After selecting the component, you’ll see an Image property on the right side.
You can adjust the size of your component and even define minimum or maximum sizes. For example, your component can be 80% width, but at maximum 1280px.

---

## Next

Let's learn how to create a prototype from our designs by adding interactions.

* **Next**: [Library](./doc/docs/guides/library?guides-enabled=true)
2 changes: 1 addition & 1 deletion docs/guides-design/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,4 +68,4 @@ As you may have already found out, elements that support children elements have
### Next
Hooray! You learned the essentials of working with Alva. Let’s jump to the next topic – how to integrate your design drafts into the prototype.

[Guide 2: Add Design Drafts](./doc/docs/guides/design?guides-enabled=true)
[Guide 2: Link Pages with interaction](./doc/docs/guides-design/interaction.html?guides-enabled=true&guides-design-enabled=true)
2 changes: 1 addition & 1 deletion docs/guides-design/interaction.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,4 +45,4 @@ Well, because usually when you click on an element in the preview it gets select
## Next

Learn how to connect a compatible code component library
* **Next**: [Variables](./doc/docs/guides/variables?guides-enabled=true)
* **Next**: [Variables](./doc/docs/guides-design/variables.html?guides-enabled=true&guides-design-enabled=true)
2 changes: 1 addition & 1 deletion docs/guides-design/variables.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,5 +45,5 @@ You input component now accepts the value you type in. yay!

## Next

* **Next**: [Create a Pattern](./doc/docs/guides/create-pattern?guides-enabled=true)
* **Next**: [Add Design Dradfts](./doc/docs/guides-design/design-drafts.html?guides-enabled=true&guides-design-enabled=true)

6 changes: 3 additions & 3 deletions packages/site/src/site.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ const Page: React.StatelessComponent<void> = (): JSX.Element => {
}
link={
<a
href="./doc/docs/guides/essentials?guides-enabled=true"
href="./doc/docs/guides-design/getting-started"
style={{ textDecoration: 'none' }}
target="_blank"
rel="noopener"
Expand Down Expand Up @@ -176,7 +176,7 @@ const Page: React.StatelessComponent<void> = (): JSX.Element => {
}
link={
<a
href="./doc/docs/guides/design?guides-enabled=true"
href="./doc/docs/guides-design/design-drafts.html?guides-enabled=true&guides-design-enabled=true"
style={{ textDecoration: 'none' }}
target="_blank"
rel="noopener"
Expand Down Expand Up @@ -205,7 +205,7 @@ const Page: React.StatelessComponent<void> = (): JSX.Element => {
}
link={
<a
href="./doc/docs/guides/interaction?guides-enabled=true"
href="./doc/docs/guides-design/interaction.html?guides-enabled=true&guides-design-enabled=true"
style={{ textDecoration: 'none' }}
target="_blank"
rel="noopener"
Expand Down

1 comment on commit d0ca678

@marionebl
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.