diff --git a/.prettierignore b/.prettierignore index 8f1fae0456..90179b93ff 100644 --- a/.prettierignore +++ b/.prettierignore @@ -1,6 +1,5 @@ .yarn dist -microsite coverage *.hbs templates diff --git a/microsite/core/Components.js b/microsite/core/Components.js index 4811b49291..2abf507f5e 100644 --- a/microsite/core/Components.js +++ b/microsite/core/Components.js @@ -53,14 +53,19 @@ Block.QuoteContainer = simpleComponent('div', 'Block__QuoteContainer'); Block.Quote = simpleComponent('p', 'Block__Quote'); Block.Divider = simpleComponent('p', 'Block__Divider', ['quote']); Block.MediaFrame = simpleComponent('div', 'Block__MediaFrame'); -Block.Graphics = ({ padding, children }) => { +Block.Graphics = ({ padding, children, innerPadding }) => { const style = {}; + const innerStyle = {}; if (padding) { style.padding = `${padding}% 0`; } + + if (innerPadding) { + innerStyle.padding = `${innerPadding}% 0`; + } return (
-
+
); }; diff --git a/microsite/pages/en/index.js b/microsite/pages/en/index.js index 11c9f9ac70..af1e2e0b66 100644 --- a/microsite/pages/en/index.js +++ b/microsite/pages/en/index.js @@ -88,7 +88,7 @@ class Index extends React.Component { /> The Speed Paradox - At Spotify, we’ve always believed in the speed and ingenuity + At Spotify, we've always believed in the speed and ingenuity that comes from having autonomous development teams. But as we learned firsthand, the faster you grow, the more fragmented and complex your software ecosystem becomes. And then @@ -238,7 +238,7 @@ class Index extends React.Component { Using templates, engineers can spin up a new microservice with - your organization’s best practices built-in, right from the + your organization's best practices built-in, right from the start @@ -350,7 +350,7 @@ class Index extends React.Component { Easy to maintain - Updating code? Update your documentation while you’re there — + Updating code? Update your documentation while you're there — with docs and code in the same place, it becomes a natural part of your workstream @@ -400,7 +400,7 @@ class Index extends React.Component { {' '} Backstage Search Platform @@ -409,11 +409,12 @@ class Index extends React.Component { + } @@ -425,8 +426,8 @@ class Index extends React.Component { Backstage Search more than just a box you type questions into - — it’s an entire platform all by itself, which you can - customize to fit your organization’s needs + — it's an entire platform all by itself, which you can + customize to fit your organization's needs @@ -442,11 +443,13 @@ class Index extends React.Component { @@ -456,7 +459,7 @@ class Index extends React.Component { With an extensible backend, you can search beyond the Software - Catalog and index any source you’d like — whether it’s + Catalog and index any source you'd like — whether it's TechDocs or Confluence and Stack Overflow @@ -603,7 +606,7 @@ class Index extends React.Component { BYO Plugins - If you don’t see the plugin you need, it’s simple to build + If you don't see the plugin you need, it's simple to build your own diff --git a/microsite/static/animations/backstage-search-platform-icon-1.gif b/microsite/static/animations/backstage-search-platform-icon-1.gif new file mode 100644 index 0000000000..07e7f45335 Binary files /dev/null and b/microsite/static/animations/backstage-search-platform-icon-1.gif differ diff --git a/microsite/static/img/search-platform-overview-small.png b/microsite/static/img/search-platform-overview-small.png new file mode 100644 index 0000000000..2563d3a5f1 Binary files /dev/null and b/microsite/static/img/search-platform-overview-small.png differ diff --git a/microsite/static/img/search-platform-overview.png b/microsite/static/img/search-platform-overview.png new file mode 100644 index 0000000000..7faddc684c Binary files /dev/null and b/microsite/static/img/search-platform-overview.png differ