Skip to content

Commit

Permalink
Merge pull request #111 from trilitech/sasha@mv-originate-deploy
Browse files Browse the repository at this point in the history
fix tutorial links: mv originate --> deploy
  • Loading branch information
sashaaldrick authored Sep 14, 2023
2 parents 6377d8b + 13890fa commit 878544b
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 13 deletions.
8 changes: 4 additions & 4 deletions src/components/Layout.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -269,19 +269,19 @@ const tutorialNavigation = [
links: [
{
title: 'Deploy a smart contract',
href: '/tutorials/originate-your-first-smart-contract',
href: '/tutorials/deploy-your-first-smart-contract',
children: [
{
title: 'SmartPy',
href: '/tutorials/originate-your-first-smart-contract/smartpy',
href: '/tutorials/deploy-your-first-smart-contract/smartpy',
},
{
title: 'CameLIGO',
href: '/tutorials/originate-your-first-smart-contract/ligo',
href: '/tutorials/deploy-your-first-smart-contract/ligo',
},
{
title: 'jsLIGO',
href: '/tutorials/originate-your-first-smart-contract/jsligo',
href: '/tutorials/deploy-your-first-smart-contract/jsligo',
},
],
},
Expand Down
2 changes: 1 addition & 1 deletion src/pages/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ Welcome to the Tezos Documentation Portal. We're currently in _beta_. Please sha

{% quick-link title="Get and Install Tezos" icon="installation" href="/tezos-basics/get-started-with-octez" description="Get started with the Tezos client, Octez" /%}

{% quick-link title="Originate your First Smart Contract" icon="deploy" href="/tutorials/originate-your-first-smart-contract/smartpy" description="How to originate your first smart contract" isTutorial=true /%}
{% quick-link title="Deploy your First Smart Contract" icon="deploy" href="/tutorials/deploy-your-first-smart-contract/smartpy" description="Deploy your first smart contract on Tezos" isTutorial=true /%}

{% quick-link title="Tezos Protocol & Shell" icon="protocol" href="/tezos-basics/tezos-protocol-and-shell" description="Understanding the Tezos Protocol & Shell" /%}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,4 @@ You do not need an experience in these languages to run the tutorial.

- To use SmartPy, a language similar to Python, see [Deploy a smart contract with SmartPy](./smartpy)
- To use jsLIGO, a language similar to JavaScript and TypeScript, see [Deploy a smart contract with jsLIGO](./jsligo)
- To use CameLIGO, a language similar to OCaml, see [Deploy a smart contract with OCaml](./ligo)
- To use CameLIGO, a language similar to OCaml, see [Deploy a smart contract with CameLIGO](./ligo)
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ This tutorial covers using the Octez command-line client to deploy a smart contr
The tutorial uses the LIGO programming language, which is one of the languages that you can write Tezos smart contracts in.
Specifically, this tutorial uses the jsLIGO version of LIGO, which has syntax similar to JavaScript, but you don't need any experience with JavaScript or LIGO to do this tutorial.

- If you are more familiar with Python, try [Deploy a smart contract with SmartPy](/tutorials/originate-your-first-smart-contract/smartpy).
- If you are more familiar with OCaml, try [Deploy a smart contract with CameLIGO](/tutorials/originate-your-first-smart-contract/ligo).
- If you are more familiar with Python, try [Deploy a smart contract with SmartPy](/tutorials/deploy-your-first-smart-contract/smartpy).
- If you are more familiar with OCaml, try [Deploy a smart contract with CameLIGO](/tutorials/deploy-your-first-smart-contract/ligo).

In this tutorial, you will learn how to:

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ This tutorial covers using the Octez command-line client to deploy a smart contr
The tutorial uses the LIGO programming language, which is one of the languages that you can write Tezos smart contracts in.
Specifically, this tutorial uses the CameLIGO version of LIGO, which has syntax similar to OCaml, but you don't need any experience with OCaml or LIGO to do this tutorial.

- If you are more familiar with JavaScript, try [Deploy a smart contract with jsLIGO](/tutorials/originate-your-first-smart-contract/jsligo).
- If you are more familiar with Python, try [Deploy a smart contract with SmartPy](/tutorials/originate-your-first-smart-contract/smartpy).
- If you are more familiar with JavaScript, try [Deploy a smart contract with jsLIGO](/tutorials/deploy-your-first-smart-contract/jsligo).
- If you are more familiar with Python, try [Deploy a smart contract with SmartPy](/tutorials/deploy-your-first-smart-contract/smartpy).

In this tutorial, you will learn how to:

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,9 @@ This tutorial covers using the Octez command-line client to deploy a smart contr
The tutorial uses the SmartPy programming language, which is one of the languages that you can write Tezos smart contracts in.
SmartPy has syntax similar to Python, but you don't need any experience with Python or SmartPy to do this tutorial.

- If you are more familiar with Python, try [Deploy a smart contract with SmartPy](/tutorials/originate-your-first-smart-contract/smartpy).
- If you are more familiar with JavaScript, try [Deploy a smart contract with jsLIGO](/tutorials/originate-your-first-smart-contract/jsligo).
- If you are more familiar with OCaml, try [Deploy a smart contract with CameLIGO](/tutorials/deploy-your-first-smart-contract/ligo).
- If you are more familiar with JavaScript, try [Deploy a smart contract with jsLIGO](/tutorials/deploy-your-first-smart-contract/jsligo).

In this tutorial, you will learn how to:

- Connect the Octez client to a testnet
Expand Down
2 changes: 1 addition & 1 deletion src/pages/tutorials/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Welcome to the Tezos Documentation Tutorials Portal. We're currently in _beta_.

{% lg-links %}

{% lg-link title="Originating your first smart contract" icon="deploy" href="/tutorials/originate-your-first-smart-contract/smartpy/" description="In 15 minutes, go from zero to hero and originate your first smart contract with SmartPy/LIGO" /%}
{% lg-link title="Deploy your first smart contract" icon="deploy" href="/tutorials/deploy-your-first-smart-contract/" description="In 15 minutes, go from zero to hero and deploy your first smart contract with SmartPy/LIGO" /%}

{% lg-link title="Smart Rollups" icon="quickstart" href="/tutorials/smart-rollups" description="Get started by deploying your own smart rollup with our onboarding tutorial" /%}

Expand Down

0 comments on commit 878544b

Please sign in to comment.