diff --git a/astro.config.mjs b/astro.config.mjs index e42e3b55e64186d..1798fa8352bbaf4 100644 --- a/astro.config.mjs +++ b/astro.config.mjs @@ -125,7 +125,7 @@ export default defineConfig({ ], social: { github: "https://github.com/cloudflare/cloudflare-docs", - twitter: "https://twitter.com/cloudflare", + "x.com": "https://twitter.com/cloudflare", youtube: "https://www.youtube.com/cloudflare", }, editLink: { diff --git a/src/components/overrides/SocialIcons.astro b/src/components/overrides/SocialIcons.astro index 9b219ec76c6c2c8..f604de7681be3f7 100644 --- a/src/components/overrides/SocialIcons.astro +++ b/src/components/overrides/SocialIcons.astro @@ -3,21 +3,30 @@ import type { Props } from "@astrojs/starlight/props"; import Default from "@astrojs/starlight/components/SocialIcons.astro"; const links = Object.entries({ - "Product directory": "/products/", - "Learning paths": "/learning-paths/", + Products: "/products/", + Learning: "/learning-paths/", Status: "https://www.cloudflarestatus.com/", Support: "/support/contacting-cloudflare-support/", - "Log in": "https://dash.cloudflare.com", + Login: "https://dash.cloudflare.com", }); ---