File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed
docs/src/components/banner Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -5,7 +5,8 @@ import FEATURE_TOGGLE from 'docs/src/featureToggle';
5
5
import PageContext from 'docs/src/modules/components/PageContext' ;
6
6
import { convertProductIdToName } from 'docs/src/modules/components/AppSearch' ;
7
7
8
- const showSurveyMessage = true ;
8
+ const showSurveyMessage = false ;
9
+ const showMaterialUIv7Message = true ;
9
10
10
11
function isBlackFriday ( ) {
11
12
const today = Date . now ( ) ;
@@ -37,7 +38,10 @@ export default function AppFrameBanner() {
37
38
let message = '' ;
38
39
let href = '' ;
39
40
40
- if ( showSurveyMessage ) {
41
+ if ( showMaterialUIv7Message ) {
42
+ message = `🎉 Material UI v7 is out now! Check out the announcement blog post.` ;
43
+ href = 'https://mui.com/blog/material-ui-v7-is-here/' ;
44
+ } else if ( showSurveyMessage ) {
41
45
message = `🚀 Influence ${ productName } 's 2025 roadmap! Participate in the latest Developer Survey` ;
42
46
href = 'https://tally.so/r/mObbvk?source=website' ;
43
47
} else if ( mounted && isBlackFriday ( ) ) {
You can’t perform that action at this time.
0 commit comments