diff --git a/docs/overview/support.md b/docs/overview/support.md index 49075366af..98450e5add 100644 --- a/docs/overview/support.md +++ b/docs/overview/support.md @@ -18,3 +18,47 @@ description: Support and Community Details and Links our email newsletter. - Give us a star ⭐️ - If you are using Backstage or think it is an interesting project, we would love a star! ❤️ + +## Community Hub + +Check out the Backstage.io [Backstage Community Hub](https://backstage.io/community) for the Community Sessions, recordings, and community resources. + +### Adding a recording to the meetup page + +To add a new recording to the [meetup page](https://backstage.io/on-demand) +create a file in +[`microsite/data/on-demand`](https://github.com/backstage/backstage/tree/master/microsite/data/on-demand) +with your recording's information. Example: + +```yaml +--- +--- +title: # name of the meetup +date: February 23, 2022 # date, format: Month day, year. This is the index field. +category: Meetup # Can be Event, Meetup, Webinar +description: # description, summary +youtubeUrl: # Url to youtube video +youtubeImgUrl: # Url to the preview image, for Youtube this is the format: https://i1.ytimg.com/vi//mqdefault.jpg +``` + +### Adding an upcoming meetup to the meetup page + +To add an upcoming meetup to the [meetup page](https://backstage.io/on-demand) +create a file in +[`microsite/data/on-demand`](https://github.com/backstage/backstage/tree/master/microsite/data/on-demand) +with your meetup's information. Example: + +```yaml +--- +--- +title: # name of the meetup +date: February 23, 2022 # date, format: Month day, year. This is the index field. +category: Upcoming # Should be "Upcoming" +description: # description, summary +youtubeUrl: # Url to youtube video +youtubeImgUrl: # Url to the preview image, for Youtube this is the format: https://i1.ytimg.com/vi//mqdefault.jpg +rsvpUrl: # Link to registration, calendar item, etc +eventUrl: # Link to event landing page +``` + +After the meetup is done, and the recording is ready you can change it to a meetup recording. diff --git a/microsite/pages/en/community.js b/microsite/pages/en/community.js index aafe640108..35eb6d766c 100644 --- a/microsite/pages/en/community.js +++ b/microsite/pages/en/community.js @@ -14,8 +14,6 @@ const Background = props => { const { baseUrl } = siteConfig; return (
- {new Date('2022-03-17') > new Date() ? : null} - Backstage Community @@ -23,7 +21,7 @@ const Background = props => { What's the use of having fun if you can't share it? Exactly. Join the vibrant community around the Backstage project. Be it on - GitHub, social media, Discord.. You'll find a welcoming + GitHub, social media, Discord... You'll find a welcoming environment, to ensure this we follow the{' '} {' '} @@ -64,8 +62,8 @@ const Background = props => {
Backstage Community Sessions is the monthly meetup where we all come together to listen to the latest maintainer updates, learn - from eachother about adopting, share exciting new demo's or - discuss any relevat topic like developer effectiveness, developer + from eachother about adopting, share exciting new demos or discuss + any relevat topic like developer effectiveness, developer experience, developer portals, etc.
@@ -126,8 +124,9 @@ const Background = props => { Open Mic Meetup A monthly casual get together of Backstage users sharing their - experiences and helping each other. Hosted by Roadie.io and - Frontside Software. + experiences and helping each other. Hosted by{' '} + Roadie.io and + Frontside Software.
@@ -138,7 +137,7 @@ const Background = props => { Backstage Weekly A weekly newsletter with news, updates and things community from - your friends at Roadie.io + your friends at Roadie.io. Learn more diff --git a/microsite/pages/en/on-demand.js b/microsite/pages/en/on-demand.js index f93d587d22..56a5095c6f 100644 --- a/microsite/pages/en/on-demand.js +++ b/microsite/pages/en/on-demand.js @@ -21,7 +21,7 @@ const ondemandMetadata = fs const truncate = text => text.length > 170 ? text.substr(0, 170) + '...' : text; -const addVideoDocsLink = '/docs/community/add-content'; +const addVideoDocsLink = '/docs/overview/support'; const defaultIconUrl = 'img/logo-gradient-on-dark.svg'; const Ondemand = () => ( @@ -78,7 +78,7 @@ const Ondemand = () => ( ), )} - +

Community on demand