diff --git a/astro.config.ts b/astro.config.ts index 684c93b3..4a158c95 100644 --- a/astro.config.ts +++ b/astro.config.ts @@ -18,6 +18,11 @@ const plugins = [ "zh-CN": "博客", }, authors: { + arendjr: { + name: "Arend van Beelen jr.", + picture: "https://avatars.githubusercontent.com/u/533294?v=4", + url: "https://arendjr.nl/", + }, conaclos: { name: "Victorien Elvinger", picture: "https://avatars.githubusercontent.com/u/2358560?s=96&v=4", @@ -98,8 +103,8 @@ export default defineConfig({ }, }, { - label: "Support", - link: "../support", + label: "Enterprise", + link: "../enterprise", translations: { uk: "Підтримка", }, diff --git a/src/components/starlight/SiteTitle.astro b/src/components/starlight/SiteTitle.astro index 46646751..a9788f04 100644 --- a/src/components/starlight/SiteTitle.astro +++ b/src/components/starlight/SiteTitle.astro @@ -4,7 +4,7 @@ import type { Props } from "@astrojs/starlight/props"; const menuItems = [ { name: "Docs", href: "/guides/getting-started" }, - { name: "Support", href: "/support" }, + { name: "Enterprise", href: "/enterprise" }, { name: "Playground", href: "/playground" }, ]; diff --git a/src/content/docs/index.mdx b/src/content/docs/index.mdx index f0a54db3..b574f533 100644 --- a/src/content/docs/index.mdx +++ b/src/content/docs/index.mdx @@ -161,8 +161,8 @@ import AwardBanner from "@/components/AwardBanner.astro" Out of the box support for all the language features you use today. First class support for TypeScript and JSX. - - We offer commercial support to organizations that + + We offer commercial support to organizations that need it through our community of contributors. diff --git a/src/pages/support.astro b/src/pages/enterprise.astro similarity index 87% rename from src/pages/support.astro rename to src/pages/enterprise.astro index a606fc1d..92cbdaf7 100644 --- a/src/pages/support.astro +++ b/src/pages/enterprise.astro @@ -5,7 +5,7 @@ import StarlightPage from "@astrojs/starlight/components/StarlightPage.astro";