Skip to content

Commit 45f844d

Browse files
committed
add Roadmap page for Base UI
1 parent 18ba272 commit 45f844d

File tree

6 files changed

+47
-2
lines changed

6 files changed

+47
-2
lines changed
Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
# Roadmap
2+
3+
<p class="description">Keep up with ongoing projects and help shape the future of Base UI.</p>
4+
5+
## How we prioritize
6+
7+
Base UI is a community-driven project, meaning we usually pick the issues and suggestions that resonate the most with the community.
8+
Therefore, make sure to leave an upvote 👍 on [the GitHub issues](https://github.com/mui/base-ui/issues) you are most interested in.
9+
10+
Additionally, we conduct annual [developer surveys](/blog/?tags=Developer+survey/) which also serve as key inputs for Base UI's roadmap.
11+
Your participation is invaluable—keep an eye on MUI's social media to catch the next survey and help shape the future of the library!
12+
13+
## Keeping track of the roadmap
14+
15+
### GitHub project
16+
17+
The Base UI GitHub project is where you can see the ongoing priorities for the library.
18+
We typically add umbrella issues to the project board after discussing them internally.
19+
20+
**[Visit the Base UI project board 👉](https://github.com/orgs/mui/projects/1/views/13)**
21+
22+
<img src="/static/base-ui/roadmap/github-roadmap.png" style="width: 814px;" alt="A screenshot of the public Base UI GitHub project." width="1628" height="400" />
23+
24+
### Milestones
25+
26+
We also create milestones within the Base UI repository to keep track of larger cycles.
27+
Check it out to keep up with ongoing progress and see which issues have been picked up for the stable release.
28+
29+
**[Visit the Base UI milestones page 👉](https://github.com/mui/material-ui/milestone/42)**
30+
31+
<img src="/static/material-ui/roadmap/milestone.png" style="width: 814px; margin-top: 4px; margin-bottom: 8px;" alt="A screenshot from GitHub of the Base UI v6 milestone." width="1628" height="400" />

docs/data/base/pages.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ const pages: readonly MuiPage[] = [
1111
{ pathname: '/base-ui/getting-started/usage', title: 'Usage' },
1212
{ pathname: '/base-ui/getting-started/customization', title: 'Customization' },
1313
{ pathname: '/base-ui/getting-started/accessibility', title: 'Accessibility' },
14+
{ pathname: '/base-ui/getting-started/roadmap', title: 'Roadmap' },
1415
{ pathname: '/base-ui/getting-started/support' },
1516
],
1617
},

docs/data/material/discover-more/roadmap/roadmap.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ We typically add umbrella issues to the project board after discussing them inte
1919

2020
**[Visit the Material UI project board 👉](https://github.com/orgs/mui/projects/23/views/12)**
2121

22-
<img src="/static/material-ui/roadmap/github-project.png" style="width: 814px; margin-top: 4px; margin-bottom: 8px;" alt="A screenshot of the public Material UI GitHub project." width="1628" height="400" />
22+
<img src="/static/material-ui/roadmap/github-project.png" style="width: 814px;" alt="A screenshot of the public Material UI GitHub project." width="1628" height="400" />
2323

2424
### Milestones
2525

@@ -28,4 +28,4 @@ Check it out to keep up with ongoing progress and see which issues have been pic
2828

2929
**[Visit the Material UI milestones page 👉](https://github.com/mui/material-ui/milestone/42)**
3030

31-
<img src="/static/material-ui/roadmap/milestone.png" style="width: 814px; margin-top: 4px; margin-bottom: 8px;" alt="A screenshot from GitHub of the Material UI v6 milestone." width="1628" height="400" />
31+
<img src="/static/material-ui/roadmap/milestone.png" style="width: 814px;" alt="A screenshot from GitHub of the Material UI v6 milestone." width="1628" height="400" />
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
import * as React from 'react';
2+
import MarkdownDocs from 'docs/src/modules/components/MarkdownDocsV2';
3+
import AppFrame from 'docs/src/modules/components/AppFrame';
4+
import * as pageProps from 'docs/data/base/getting-started/roadmap/roadmap.md?muiMarkdown';
5+
6+
export default function Page() {
7+
return <MarkdownDocs {...pageProps} />;
8+
}
9+
10+
Page.getLayout = (page) => {
11+
return <AppFrame>{page}</AppFrame>;
12+
};
115 KB
Loading

docs/translations/translations.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@
3838
"/base-ui/getting-started/usage": "Usage",
3939
"/base-ui/getting-started/customization": "Customization",
4040
"/base-ui/getting-started/accessibility": "Accessibility",
41+
"/base-ui/getting-started/roadmap": "Roadmap",
4142
"/base-ui/getting-started/support": "Support",
4243
"/base-ui/react-": "Components",
4344
"/base-ui/all-components": "All components",

0 commit comments

Comments
 (0)