Skip to content

Commit

Permalink
Change links
Browse files Browse the repository at this point in the history
  • Loading branch information
chasefleming committed Oct 24, 2024
1 parent a67aaa3 commit 0bae567
Show file tree
Hide file tree
Showing 9 changed files with 14 additions and 10 deletions.
2 changes: 1 addition & 1 deletion docs/build/basics/flow-token.md
Original file line number Diff line number Diff line change
Expand Up @@ -107,4 +107,4 @@ The Flow SDKs also allow polling for events using the Flow Access API,

## How to Build with FLOW

To get started building on Flow, please see the [Flow App Quickstart](../guides/flow-app-quickstart.md)
To get started building on Flow, please see the [Flow App Quickstart](../getting-started/fcl-quickstart.md)
4 changes: 2 additions & 2 deletions docs/build/explore-more.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Below are some additional tutorials to help you get started with Flow:
{
type: 'link',
label: 'Flow App Quickstart',
href: '/build/guides/flow-app-quickstart',
href: '/build/getting-started/fcl-quickstart',
description: 'Simple walkthrough building a web3 app using the Flow Client Library (FCL)',
customProps: {
icon: <FontAwesomeIcon icon={faWindowMaximize} className="h-16" />,
Expand Down Expand Up @@ -58,7 +58,7 @@ Below are some additional tutorials to help you get started with Flow:
{
type: 'link',
label: 'Walkthrough Guides',
href: '/build/guides/flow-app-quickstart',
href: '/build/getting-started/fcl-quickstart',
description: 'Longer form guides to help you get started with Flow',
customProps: {
icon: <FontAwesomeIcon icon={faBook} className="h-16" />,
Expand Down
2 changes: 1 addition & 1 deletion docs/build/flow.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ The following chapters summarize the content in this section. Read on more for d

## App Development

The [Flow App Quickstart](./guides/flow-app-quickstart.md) covers the Flow core concepts, including:
The [Flow App Quickstart](./getting-started/fcl-quickstart.md) covers the Flow core concepts, including:

- **App Client:** The app client is the interface through which users interact with your app. Web and mobile applications are typical examples of app clients.
- **Smart Contract:** A smart contract is a collection of code deployed to a permanent location on the blockchain that defines the core logic for a dApp.
Expand Down
1 change: 0 additions & 1 deletion docs/build/getting-started/fcl-quickstart.md
Original file line number Diff line number Diff line change
Expand Up @@ -509,5 +509,4 @@ Now, run your app with `npm start` and open it in your browser.
[React]: https://react.dev/learn
[Create React App]: https://create-react-app.dev
[view the contract here]: https://f.dnz.dev/0xa1296b1e2e90ca5b/HelloWorld
[the app quickstart guide]: ../guides/flow-app-quickstart.md
[FCL documentation]: ../../tools/clients/fcl-js/index.md
2 changes: 1 addition & 1 deletion docs/tools/clients/fcl-js/api.md
Original file line number Diff line number Diff line change
Expand Up @@ -434,7 +434,7 @@ export const signMessage = async () => {
Discovery abstracts away code so that developers don't have to deal with the discovery of Flow compatible wallets, integration, or authentication. Using `discovery` from FCL allows dapps to list and authenticate with wallets while having full control over the UI. Common use cases for this are login or registration pages.
(Alternatively, if you don't need control over your UI you can continue to use the `discovery.wallet` config value documented in the [Quickstart](../../../build/guides/flow-app-quickstart.md) for the simplest configuration.)
(Alternatively, if you don't need control over your UI you can continue to use the `discovery.wallet` config value documented in the [Quickstart](../../../build/getting-started/fcl-quickstart.md) for the simplest configuration.)
> ⚠️**The following methods can only be used in web browsers.**
Expand Down
2 changes: 1 addition & 1 deletion docs/tools/clients/fcl-js/authentication.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,6 @@ The TL;DR is to call `fcl.authenticate()` and `fcl.unauthenticate()` respectivel
On Flow mainnet, you wont even need to configure anything for this to work, the users of your dapp will go through the authentication process and be able to use any FCL compatible wallet providers.

During development you will probably want to configure your dapp to use [`@onflow/dev-wallet`](https://github.com/onflow/fcl-dev-wallet).
The [Quick Start](../../../build/guides/flow-app-quickstart.md) guide will walk you through using it.
The [Quick Start](../../../build/getting-started/fcl-quickstart.md) guide will walk you through using it.

We know this can all be fairly overwhelming, we are committed to help though. If you run into any problems, reach out to us on [Discord](https://discord.gg/flow), we are more than happy to help out.
2 changes: 1 addition & 1 deletion docs/tools/clients/fcl-js/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ const txId = await fcl.mutate({

## Next Steps

See the [Flow App Quick Start](../../../build/guides/flow-app-quickstart.md).
See the [Flow App Quick Start](../../../build/getting-started/fcl-quickstart.md).

See the full [API Reference](./api.md) for all FCL functionality.

Expand Down
4 changes: 2 additions & 2 deletions docs/tools/clients/fcl-js/index.mdx.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<a href="https://github.com/onflow/fcl-js"><strong>View on Github»</strong></a>
<br />
<br />
<a href="../../../build/guides/flow-app-quickstart">Quickstart</a>
<a href="../../../build/getting-started/fcl-quickstart">Quickstart</a>
·
<a href="https://github.com/onflow/fcl-js/issues">Report Bug</a>
·
Expand Down Expand Up @@ -128,7 +128,7 @@ const txId = await fcl.mutate({

## Next Steps

See the [Flow App Quick Start](../../guides/flow-app-quickstart.mdx).
See the [Flow App Quick Start](../../getting-started/fcl-quickstart.mdx).

See the full [API Reference](./api.md) for all FCL functionality.

Expand Down
5 changes: 5 additions & 0 deletions vercel.json
Original file line number Diff line number Diff line change
Expand Up @@ -1252,6 +1252,11 @@
"source": "build/smart-contracts/cadence",
"destination": "https://cadence-lang.org/docs/",
"permanent": true
},
{
"source": "/build/guides/flow-app-quickstart",
"destination": "/build/getting-started/fcl-quickstart",
"permanent": true
}
]
}

0 comments on commit 0bae567

Please sign in to comment.