diff --git a/docs/tutorials.mdx b/docs/tutorials.mdx index ba78cbd65..10557003b 100644 --- a/docs/tutorials.mdx +++ b/docs/tutorials.mdx @@ -16,7 +16,7 @@ These tutorials are intended for developers who are starting work with Tezos: @@ -48,7 +48,7 @@ These tutorials contain multiple parts and are intended for developers with some @@ -88,7 +88,7 @@ These tutorials are intended for developers who are familiar with Tezos and want diff --git a/docs/tutorials/dapp/part-1.md b/docs/tutorials/dapp/part-1.md index 267b8d4ee..ef5da823e 100644 --- a/docs/tutorials/dapp/part-1.md +++ b/docs/tutorials/dapp/part-1.md @@ -80,19 +80,19 @@ taq create contract pokeGame.jsligo - The LIGO Set library has a function **add** to add one element to the Set of items. There is no concept of Class in LIGO, you use a library to apply functions on objects. - A list of operations is required to return. An empty list is returned here as there is no other contract to call. - [Have a look at the Set library documentation](https://ligolang.org/docs/language-basics/sets-lists-tuples#sets) + [Have a look at the Set library documentation](https://ligolang.org/docs/data-types/sets) - [Have a look at the List library documentation](https://ligolang.org/docs/language-basics/sets-lists-tuples/?lang=jsligo#lists) + [Have a look at the List library documentation](https://ligolang.org/docs/data-types/lists) Here, get the caller address using `Tezos.get_source()`. Tezos library provides useful functions for manipulating blockchain objects. - [Have a look at the Tezos library documentation](https://ligolang.org/docs/reference/current-reference) + [Have a look at the Tezos library documentation](https://ligolang.org/docs/reference/tezos-reference?lang=jsligo) ## Simulate a call on your smart contract The LIGO command-line provides sub-commands to test your LIGO code. -[Have a look at the Testing Framework documentation](https://ligolang.org/docs/advanced/testing) +[Have a look at the Testing Framework documentation](https://ligolang.org/docs/testing) 1. Compile the contract with Taqueria (Force to use a specific LIGO version with `TAQ_LIGO_IMAGE` Taqueria environment variable). diff --git a/src/components/Footer/index.jsx b/src/components/Footer/index.jsx index d5d0035ae..e3daf0d67 100644 --- a/src/components/Footer/index.jsx +++ b/src/components/Footer/index.jsx @@ -35,7 +35,6 @@ const navLinks2 = [ const additionalLinks = [ { label: 'Tezos.com', to: 'https://tezos.com/' }, - { label: 'Terms of Use', to: '/terms-of-use' }, { label: 'Privacy Policy', to: 'https://tezos.com/privacy-notice/' }, ];