diff --git a/src/components/Footer/index.astro b/src/components/Footer/index.astro
index 5d3a10d439..9c527ca469 100644
--- a/src/components/Footer/index.astro
+++ b/src/components/Footer/index.astro
@@ -3,6 +3,7 @@ import { getEntry } from "astro:content";
import { getCurrentLocale, getUiTranslator } from "@/src/i18n/utils";
import { Icon } from "../Icon";
import Banner from "@components/Banner/index.astro";
+import { p5Version } from "@/src/globals/p5-version";
const currentLocale = getCurrentLocale(Astro.url.pathname);
const t = await getUiTranslator(currentLocale);
@@ -32,7 +33,7 @@ const bannerEntry = await getEntry("banner", currentLocale);
{t("Contribute")}
{t("Community")}
{t("About")}
- {t("Start Coding")}
+ {t("Start Coding")}
{t("Donate")}
diff --git a/src/components/Nav/MainNavLinks.tsx b/src/components/Nav/MainNavLinks.tsx
index 0e3b628535..b40a7abff5 100644
--- a/src/components/Nav/MainNavLinks.tsx
+++ b/src/components/Nav/MainNavLinks.tsx
@@ -1,6 +1,7 @@
import styles from "./styles.module.scss";
import { Logo } from "../Logo";
import { Icon } from "../Icon";
+import { p5Version } from "@/src/globals/p5-version";
type MainNavLinksProps = {
links: {
@@ -81,7 +82,7 @@ export const MainNavLinks = ({
-
-
+
diff --git a/src/content/text-detail/en/download.mdx b/src/content/text-detail/en/download.mdx
index e0e90c3567..2361679456 100644
--- a/src/content/text-detail/en/download.mdx
+++ b/src/content/text-detail/en/download.mdx
@@ -9,13 +9,14 @@ import {
libraryDownloadUrl,
minifiedLibraryDownloadUrl
} from '@src/globals/globals'
+import { p5Version } from '@src/globals/p5-version'
Welcome! This page contains the links to start using p5.js in the way that suits you best. Open the p5.js Editor in your web browser, or download the library to your own computer. We’ve tried to order the links to reflect what a beginner might want first, then what a more experienced programmer may be looking for.
### Start Coding Online
This link redirects you to the p5.js Editor online so you can begin using p5.js immediately.
- p5.js Editor
+ p5.js Editor
### Download the Complete Library
This is a download containing the p5.js library file, the p5.sound addon, and an example project. It does not contain an editor. Visit [Get Started](/tutorials/get-started) to learn how to setup a p5.js project.
diff --git a/src/content/text-detail/zh-Hans/download.mdx b/src/content/text-detail/zh-Hans/download.mdx
index eb13bf8e3f..cf33f110db 100644
--- a/src/content/text-detail/zh-Hans/download.mdx
+++ b/src/content/text-detail/zh-Hans/download.mdx
@@ -9,13 +9,14 @@ import {
libraryDownloadUrl,
minifiedLibraryDownloadUrl
} from '@src/globals/globals'
+import { p5Version } from '@src/globals/p5-version'
欢迎!本页面包含了开始使用 p5.js 的各种方式的链接。您可以在网络浏览器中打开 p5.js 编辑器,或者将库下载到您的计算机上。我们按照从初学者到进阶开发者的需求顺序来组织这些链接。
### 在线开始编程
此链接将带您前往在线 p5.js 编辑器,您可以立即开始使用 p5.js。
- p5.js 编辑器
+ p5.js 编辑器
### 下载完整库
这个下载包含了 p5.js 库文件、p5.sound 插件和一个示例项目。不包含编辑器。访问[入门指南](/tutorials/get-started)了解如何设置 p5.js 项目。