diff --git a/src/components/Layout.jsx b/src/components/Layout.jsx index ccc973bbe..833bf4fac 100644 --- a/src/components/Layout.jsx +++ b/src/components/Layout.jsx @@ -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', }, ], }, diff --git a/src/pages/index.md b/src/pages/index.md index 0f05a8c14..72d9a7293 100644 --- a/src/pages/index.md +++ b/src/pages/index.md @@ -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" /%} diff --git a/src/pages/tutorials/originate-your-first-smart-contract/index.md b/src/pages/tutorials/deploy-your-first-smart-contract/index.md similarity index 97% rename from src/pages/tutorials/originate-your-first-smart-contract/index.md rename to src/pages/tutorials/deploy-your-first-smart-contract/index.md index b41e1f0b1..554a453b4 100644 --- a/src/pages/tutorials/originate-your-first-smart-contract/index.md +++ b/src/pages/tutorials/deploy-your-first-smart-contract/index.md @@ -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) diff --git a/src/pages/tutorials/originate-your-first-smart-contract/jsligo/index.md b/src/pages/tutorials/deploy-your-first-smart-contract/jsligo/index.md similarity index 98% rename from src/pages/tutorials/originate-your-first-smart-contract/jsligo/index.md rename to src/pages/tutorials/deploy-your-first-smart-contract/jsligo/index.md index 176cb1093..ed3176da8 100644 --- a/src/pages/tutorials/originate-your-first-smart-contract/jsligo/index.md +++ b/src/pages/tutorials/deploy-your-first-smart-contract/jsligo/index.md @@ -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: diff --git a/src/pages/tutorials/originate-your-first-smart-contract/ligo/index.md b/src/pages/tutorials/deploy-your-first-smart-contract/ligo/index.md similarity index 98% rename from src/pages/tutorials/originate-your-first-smart-contract/ligo/index.md rename to src/pages/tutorials/deploy-your-first-smart-contract/ligo/index.md index c71ef9160..549c10c8c 100644 --- a/src/pages/tutorials/originate-your-first-smart-contract/ligo/index.md +++ b/src/pages/tutorials/deploy-your-first-smart-contract/ligo/index.md @@ -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: diff --git a/src/pages/tutorials/originate-your-first-smart-contract/smartpy/index.md b/src/pages/tutorials/deploy-your-first-smart-contract/smartpy/index.md similarity index 98% rename from src/pages/tutorials/originate-your-first-smart-contract/smartpy/index.md rename to src/pages/tutorials/deploy-your-first-smart-contract/smartpy/index.md index 651acb55a..d92784824 100644 --- a/src/pages/tutorials/originate-your-first-smart-contract/smartpy/index.md +++ b/src/pages/tutorials/deploy-your-first-smart-contract/smartpy/index.md @@ -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 diff --git a/src/pages/tutorials/index.md b/src/pages/tutorials/index.md index ad8000369..3a6f585ec 100644 --- a/src/pages/tutorials/index.md +++ b/src/pages/tutorials/index.md @@ -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" /%}