diff --git a/docs/7.primitives/dao/introduction.md b/docs/7.primitives/dao/introduction.md index ce488b28150..8de0160beb1 100644 --- a/docs/7.primitives/dao/introduction.md +++ b/docs/7.primitives/dao/introduction.md @@ -8,13 +8,6 @@ hide_table_of_contents: false import {FeatureList, Column, Feature} from "@site/src/components/featurelist" import ContactUs from '@site/src/components/ContactUs.mdx'; - -- [What is DAO?](#what-is-dao) - ---- - -## What is DAO? - Decentralized Autonomous Organizations (DAOs) are self-organized groups that form around common purposes. Membership, decision making, and funding are coordinated by publicly voting on proposals through a smart contract. This section provides some examples how to create or interact with DAO from [a NEAR component](./interacting/bos.md), [web app](./interacting/web-app.md), [near-cli](./interacting/near-cli.md) and [smart contract](./interacting/smart-contract.md). diff --git a/docs/7.primitives/dex/introduction.md b/docs/7.primitives/dex/introduction.md index f9ba06abd86..4280511ad75 100644 --- a/docs/7.primitives/dex/introduction.md +++ b/docs/7.primitives/dex/introduction.md @@ -8,13 +8,6 @@ hide_table_of_contents: false import {FeatureList, Column, Feature} from "@site/src/components/featurelist" import ContactUs from '@site/src/components/ContactUs.mdx'; - -- [What is DEX?](#what-is-dex) - ---- - -## What is DEX? - DEX is an app which allows users to trade tokens by using only smart contracts. Usually users interact with DEX by web app. But since DEX is a set of smart contracts you can use these contracts from your code. This section provides some examples how to interact with DEX from [a NEAR component](./interacting/bos), [web app](./interacting/web-app), [near-cli](./interacting/near-cli) and [smart contract](./interacting/smart-contract). diff --git a/docs/7.primitives/ft/introduction.md b/docs/7.primitives/ft/introduction.md index c04b0d1fe23..0a8f251c074 100644 --- a/docs/7.primitives/ft/introduction.md +++ b/docs/7.primitives/ft/introduction.md @@ -8,14 +8,6 @@ hide_table_of_contents: false import {FeatureList, Column, Feature} from "@site/src/components/featurelist" import ContactUs from '@site/src/components/ContactUs.mdx'; - -- [What is an FT?](#what-is-an-ft) -- [How to create FT token](#how-to-create-ft-token) - ---- - -## What is an FT? - Fungible token is representation of an asset on a blockchain that is interchangeable. Besides the native NEAR token, user can issue their own fungible tokens or use those that are already present in the ecosystem and created by other users or projects. diff --git a/docs/7.primitives/linkdrop/introduction.md b/docs/7.primitives/linkdrop/introduction.md index 7b20bed2afe..b128f5892d2 100644 --- a/docs/7.primitives/linkdrop/introduction.md +++ b/docs/7.primitives/linkdrop/introduction.md @@ -8,14 +8,7 @@ hide_table_of_contents: false import {FeatureList, Column, Feature} from "@site/src/components/featurelist" import ContactUs from '@site/src/components/ContactUs.mdx'; - -- [What is linkdrop?](#what-is-linkdrop) - ---- - -## What is linkdrop? - -Linkdrop is an easy way to distribute blockchain items (NFTs, FTs) via links. You provide a link for user and they can claim your drop. +Linkdrops are an easy way to distribute blockchain items (NFTs, FTs) via links. You provide a link for user and they can claim your drop. This section provides some examples how to create different linkdrops from [a NEAR component](./interacting/bos.md), [web app](./interacting/web-app.md) and [near-cli](./interacting/near-cli.md). diff --git a/docs/7.primitives/nft/introduction.md b/docs/7.primitives/nft/introduction.md index 22f5dc616be..0c00a5bfbfc 100644 --- a/docs/7.primitives/nft/introduction.md +++ b/docs/7.primitives/nft/introduction.md @@ -8,14 +8,6 @@ hide_table_of_contents: false import {FeatureList, Column, Feature} from "@site/src/components/featurelist" import ContactUs from '@site/src/components/ContactUs.mdx'; - -- [What is an NFT?](#what-is-an-nft) -- [How to create NFT collection](#how-to-create-nft-collection) - ---- - -## What is an NFT? - In contrast with fungible tokens, non-fungible tokens (NFT) are unitary and therefore unique. This makes NFTs ideal to represent ownership of assets such as a piece of digital content, or a ticket for an event. As with fungible tokens, NFTs are **not stored** in the user's wallet, instead, each NFT lives in a **NFT contract**. The NFT contract works as a bookkeeper, this is: it is in charge of handling the creation, storage and transfers of NFTs. diff --git a/website/docusaurus.config.js b/website/docusaurus.config.js index 978800a44e6..9b2a62c574d 100644 --- a/website/docusaurus.config.js +++ b/website/docusaurus.config.js @@ -158,9 +158,9 @@ ${content}`, // <-- this last part adds in the rest of the content, which would label: "Primitives", position: "left", items: [ - { label: "Drops", href: "/primitives/dao/introduction" }, - { label: "Fungible Tokens", href: "/primitives/nft/introduction" }, - { label: "Non-Fungible Tokens", href: "/primitives/ft/introduction" }, + { label: "Drops", href: "/primitives/linkdrop/introduction" }, + { label: "Fungible Tokens", href: "/primitives/ft/introduction" }, + { label: "Non-Fungible Tokens", href: "/primitives/nft/introduction" }, { label: "Decentralized Exchanges", href: "/primitives/dex/introduction" }, { label: "Autonomous Organizations", href: "/primitives/dao/introduction" }, ]