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 = ({