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

Update slug for new getting started step 1 page #996

Merged
merged 3 commits into from
Nov 20, 2024
Merged
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 docs/build/getting-started/fcl-quickstart.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ sidebar_label: Simple Frontend

# Simple Frontend

Building upon the `Counter` contract you interacted with in [Step 1: Contract Interaction](hello-world.md) and deployed locally in [Step 2: Local Development](./flow-cli.md), this tutorial will guide you through creating a simple frontend application using [Next.js] to interact with the `Counter` smart contract on the local Flow emulator. Using the [Flow Client Library] (FCL), you'll learn how to read and modify the contract's state from a React web application, set up wallet authentication using FCL's Discovery UI connected to the local emulator, and query the chain to read data from smart contracts.
Building upon the `Counter` contract you interacted with in [Step 1: Contract Interaction](contract-interaction.md) and deployed locally in [Step 2: Local Development](./flow-cli.md), this tutorial will guide you through creating a simple frontend application using [Next.js] to interact with the `Counter` smart contract on the local Flow emulator. Using the [Flow Client Library] (FCL), you'll learn how to read and modify the contract's state from a React web application, set up wallet authentication using FCL's Discovery UI connected to the local emulator, and query the chain to read data from smart contracts.

## Objectives

Expand All @@ -18,7 +18,7 @@ After completing this guide, you'll be able to:

## Prerequisites

- Completion of [Step 1: Contract Interaction](hello-world.md) and [Step 2: Local Development](./flow-cli.md).
- Completion of [Step 1: Contract Interaction](contract-interaction.md) and [Step 2: Local Development](./flow-cli.md).
- Flow CLI installed.
- Node.js and npm installed.

Expand Down
2 changes: 1 addition & 1 deletion docusaurus.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -304,7 +304,7 @@ const config = {
items: [
{
label: 'Getting Started',
to: '/build/getting-started/hello-world',
to: '/build/getting-started/contract-interaction',
},
{
label: "SDK's & Tools",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ const homepageData: Record<string, HomepageStartItemProps> = {
icon: 'cadence-course',
},
'beginner-dapp': {
link: '/build/getting-started/hello-world',
link: '/build/getting-started/contract-interaction',
icon: 'start-here',
},
'flow-quest': {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ export function LandingHeaderHome({
<ButtonLink
size={'sm'}
variant="accent"
href={'/build/getting-started/hello-world'}
href={'/build/getting-started/contract-interaction'}
className={'hover:no-underline hover:opacity-80'}
>
Get Building
Expand Down
2 changes: 1 addition & 1 deletion src/ui/design-system/src/lib/Components/LinkGrid/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ const sections: LinkGridSection[] = [
links: [
{
title: 'Hello World Tutorial',
href: '/build/getting-started/hello-world',
href: '/build/getting-started/contract-interaction',
},
{
title: 'App Architecture',
Expand Down
5 changes: 5 additions & 0 deletions vercel.json
Original file line number Diff line number Diff line change
Expand Up @@ -1238,6 +1238,11 @@
"destination": "/build/getting-started/hello-world",
"permanent": true
},
{
"source": "/build/getting-started/hello-world",
"destination": "/build/getting-started/contract-interaction",
"permanent": true
},
{
"source": "/build/getting-started/quickstarts/flow-cli",
"destination": "/build/getting-started/flow-cli",
Expand Down
Loading