From b654c4dedef9881840368c1efb0575f6ec0fb0bd Mon Sep 17 00:00:00 2001 From: Danilo Leal <67129314+danilo-leal@users.noreply.github.com> Date: Tue, 28 May 2024 20:25:33 -0300 Subject: [PATCH] add the new versions page path to the versions menu --- docs/pages/_app.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/pages/_app.js b/docs/pages/_app.js index a9b1066aac2118..55c4a96f1bdbbf 100644 --- a/docs/pages/_app.js +++ b/docs/pages/_app.js @@ -174,7 +174,7 @@ function AppWrapper(props) { }, { text: 'View all versions', - href: `https://mui.com${languagePrefix}/versions/`, + href: `https://mui.com${languagePrefix}/material-ui/getting-started/versions/`, }, ], }; @@ -198,7 +198,7 @@ function AppWrapper(props) { { text: 'v4', href: `https://v4.mui.com${languagePrefix}/system/basics/` }, { text: 'View all versions', - href: `https://mui.com${languagePrefix}/versions/`, + href: `https://mui.com${languagePrefix}/material-ui/getting-started/versions/`, }, ], }; @@ -220,7 +220,7 @@ function AppWrapper(props) { { text: `v${materialPkgJson.version}`, current: true }, { text: 'View all versions', - href: `https://mui.com${languagePrefix}/versions/`, + href: `https://mui.com${languagePrefix}/material-ui/getting-started/versions/`, }, ], };