diff --git a/src/components/LeftSidebar/LeftSidebar.astro b/src/components/LeftSidebar/LeftSidebar.astro
index 18fd1a35af0df..7c4f4f3f99ba2 100644
--- a/src/components/LeftSidebar/LeftSidebar.astro
+++ b/src/components/LeftSidebar/LeftSidebar.astro
@@ -4,6 +4,7 @@ import { removeLeadingSlash, removeTrailingSlash } from '../../util';
import { getNav, useTranslations } from "../../i18n/util";
import SidebarContent from './SidebarContent.astro';
import SidebarToggleTabGroup from '../TabGroup/SidebarToggleTabGroup.tsx';
+import CommunityMenu from "../RightSidebar/CommunityMenu.astro";
export interface Props {
currentPage: string;
@@ -43,6 +44,7 @@ for (const section of sidebarSections) {
+
-
diff --git a/src/components/RightSidebar/CommunityMenu.astro b/src/components/RightSidebar/CommunityMenu.astro
new file mode 100644
index 0000000000000..efffb8d968046
--- /dev/null
+++ b/src/components/RightSidebar/CommunityMenu.astro
@@ -0,0 +1,99 @@
+---
+import UIString from '../UIString.astro';
+
+export interface Props {
+ hideOnLargerScreens: boolean;
+}
+
+const { hideOnLargerScreens = false } = Astro.props as Props;
+---
+
+
+
+
diff --git a/src/components/RightSidebar/ContributeMenu.astro b/src/components/RightSidebar/ContributeMenu.astro
new file mode 100644
index 0000000000000..bdf10a3b392ed
--- /dev/null
+++ b/src/components/RightSidebar/ContributeMenu.astro
@@ -0,0 +1,51 @@
+---
+import UIString from '../UIString.astro';
+
+const { editHref } = Astro.props;
+---
+
+
+
+
+
diff --git a/src/components/RightSidebar/MoreMenu.astro b/src/components/RightSidebar/MoreMenu.astro
deleted file mode 100644
index 0a7d3cd19b91c..0000000000000
--- a/src/components/RightSidebar/MoreMenu.astro
+++ /dev/null
@@ -1,90 +0,0 @@
----
-import UIString from '../UIString.astro';
-
-const { editHref } = Astro.props;
----
-
-
-
-
-
diff --git a/src/components/RightSidebar/RightSidebar.astro b/src/components/RightSidebar/RightSidebar.astro
index 8fba717948eaa..1e4793dca09f4 100644
--- a/src/components/RightSidebar/RightSidebar.astro
+++ b/src/components/RightSidebar/RightSidebar.astro
@@ -1,7 +1,8 @@
---
import TableOfContents from './TableOfContents.tsx';
import ThemeToggleButton from './ThemeToggleButton.tsx';
-import MoreMenu from './MoreMenu.astro';
+import ContributeMenu from './ContributeMenu.astro';
+import CommunityMenu from './CommunityMenu.astro';
import { useTranslations } from "../../i18n/util.ts";
const t = useTranslations(Astro);
@@ -19,7 +20,8 @@ const headers = content.astro?.headers;
labels={{ onThisPage: t('rightSidebar.onThisPage'), overview: t('rightSidebar.overview') }}
/>
)}
-
+
+
` acessibility labels
'themeToggle.useLight': 'Use light theme',