diff --git a/microsite/pages/en/community.js b/microsite/pages/en/community.js
index 26366b25df..3d32226c60 100644
--- a/microsite/pages/en/community.js
+++ b/microsite/pages/en/community.js
@@ -8,6 +8,27 @@
const React = require('react');
const Components = require(`${process.cwd()}/core/Components.js`);
const Block = Components.Block;
+const Breakpoint = Components.Breakpoint;
+const ActionBlock = Components.ActionBlock;
+const BulletLine = Components.BulletLine;
+
+const PARTNERS = [{
+ name: "Frontside Software",
+ url: "https://frontside.com/backstage/",
+ logo: "img/partner-logo-frontside.png"
+}, {
+ name: "Roadie",
+ url: "https://roadie.io/",
+ logo: "img/partner-logo-roadie.png"
+}, {
+ name: "ThoughtWorks",
+ url: "https://www.thoughtworks.com",
+ logo: "img/partner-logo-thoughtworks.png"
+}, {
+ name: "VMWare",
+ url: "https://www.vmware.com",
+ logo: "img/partner-logo-vmware.png"
+}];
const Background = props => {
const { config: siteConfig } = props;
@@ -17,14 +38,10 @@ const Background = props => {
- Backstage Community
-
-
+ Backstage Community
- 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
- environment. To ensure this, we follow the{' '}
+ Join
+ the vibrant community around the Backstage project through social media and different meetups. To ensure you have a welcoming environment, we follow {' '}
{' '}
CNCF Code of Conduct
@@ -32,84 +49,146 @@ const Background = props => {
in everything we do.
-
+
- Main community channels
-
- Chat and get support on our{' '}
- Discord
-
- Get into contributing with the{' '}
-
- Good First Issues
-
-
- Subscribe to the{' '}
-
- Community newsletter
-
-
- Join the{' '}
-
- Twitter community
-
-
+
+ Get started in our community!
+
+
-
-
-
- Backstage Community Sessions
-
- Missed a meetup? Wondering when the next one is coming up? We've
- got you covered! Check out our all-new Meetups page.
-
- Meetups
-
-
- Adopter Community Sessions
-
- Backstage Community Sessions is the monthly meetup where we all
- come together to listen to the latest maintainer updates, learn
- from each other about adopting, share exciting new demos or
- discuss any relevant topic like developer effectiveness, developer
- experience, developer portals, etc. Have something to share, or a
- burning question? Add it to the{' '}
- issue.
-
-
-
- Contributor Community Sessions
-
- Discuss all things contributing, diving deep under the hood of
- Backstage (Backstage of Backstage? Backerstage?). An open
- discussion with maintainers and contributors of Backstage. If you
- like Backstage, this is your favorite Zoom meeting of the month,
- guaranteed! Have something to share, or a burning question? Add it
- to the{' '}
- issue.
-
+
+
+
+ Offical Backstage initiatives
+ Stay tuned to the latest developments
-
+
-
- Backstage official Newsletter
-
-
+
+
+
+ Community sessions
+
- The official monthly Backstage newsletter. Containing the latest
- news from your favorite project.
+ Maintainers and adopters meet monthly to share updates,
+ demos, and ideas. Yep, all sessions are recorded!
-
- Subscribe
+ Join a session
+
+
+
+
+ Newsletter
+
+
+ The official monthly Backstage newsletter. Don't miss
+ the latest news from your favorite project!
+
+ Subscribe
+
+
+
+
+ Contributor Spotlight
+
+
+ A recognition for valuable community work. Nominate contributing members for
+ their efforts! We'll put them in the spotlight ❤️
+
+ Nominate now
+
+
+
+
+
+
+
+ Community initiatives
+
+
+
+ Open Mic Meetup
+
+
+ A casual get together of Backstage users sharing their
+ experiences and helping each other. Hosted by{' '}
+ Roadie.io and{' '}
+ Frontside Software.
+
+ Learn more
+
+
+
+ Backstage Weekly Newsletter
+
+
+ A weekly newsletter with news, updates and things community from
+ your friends at Roadie.io.
+
+
+ Learn more
-
+
+
+
+ Commercial Partners
+
+ {PARTNERS.map((partner) => (
+
+
+
+
+
+
+
+ ))}
+
+
+
+
+ {/*
Spotlight
@@ -145,7 +224,7 @@ const Background = props => {
-
+ */}
);
};
diff --git a/microsite/static/img/partner-logo-frontside.png b/microsite/static/img/partner-logo-frontside.png
new file mode 100644
index 0000000000..c8cad6bce1
Binary files /dev/null and b/microsite/static/img/partner-logo-frontside.png differ
diff --git a/microsite/static/img/partner-logo-roadie.png b/microsite/static/img/partner-logo-roadie.png
new file mode 100644
index 0000000000..41b169f55b
Binary files /dev/null and b/microsite/static/img/partner-logo-roadie.png differ
diff --git a/microsite/static/img/partner-logo-thoughtworks.png b/microsite/static/img/partner-logo-thoughtworks.png
new file mode 100644
index 0000000000..53c3bc2a9e
Binary files /dev/null and b/microsite/static/img/partner-logo-thoughtworks.png differ
diff --git a/microsite/static/img/partner-logo-vmware.png b/microsite/static/img/partner-logo-vmware.png
new file mode 100644
index 0000000000..049975ca15
Binary files /dev/null and b/microsite/static/img/partner-logo-vmware.png differ