diff --git a/website/docs/get-started.mdx b/website/docs/get-started.mdx index 886b106..5f2a336 100644 --- a/website/docs/get-started.mdx +++ b/website/docs/get-started.mdx @@ -76,54 +76,27 @@ flowchart TD ## Installation +To install Next, you can use the following command: + - - - To install Next on Unix-like systems (Linux, macOS, and Git-Bash for windows, etc.), you can use the following command: - + ```sh curl --proto '=https' --tlsv1.2 -sSf https://getnext.sh | sh ``` - - This script will download and install the latest version of Next on your system. - - :::tip - - If the downloading is very slow, you can use a https proxy like this: - - ```sh - curl --proto '=https' --tlsv1.2 -sSf https://getnext.sh | https_proxy=http://127.0.0.1:1080 sh - ``` - - ::: - - - - To install Next on Windows, you can use the following command in **PowerShell**: - + ```sh iwr -useb https://getnext.sh/ps | iex ``` - - This will install the Next on your Windows system. - - :::note - Also, you can install Next in **Git-Bash**: - - ```sh - curl --proto '=https' --tlsv1.2 -sSf https://getnext.sh | sh - ``` - ::: -After installing `next`, run `next version` to check the installed version: +After installing Next, run `next version` to check the installed version: ```sh next version diff --git a/website/docusaurus.config.ts b/website/docusaurus.config.ts index aba578c..920dea1 100644 --- a/website/docusaurus.config.ts +++ b/website/docusaurus.config.ts @@ -160,8 +160,12 @@ const config: Config = { label: "Feature Images Designed by Freepik", href: "https://www.freepik.com", }, + { + label: "Built with Docusaurus", + href: "https://docusaurus.io", + }, ], - copyright: `Copyright © ${new Date().getFullYear()} Next, Inc. Built with Docusaurus.`, + copyright: `Copyright © ${new Date().getFullYear()} Next, Inc.`, }, prism: { theme: prismLight,