Adding spotlight form, renaming session filename

Signed-off-by: Suzanne Daniels <suzanned@spotify.com>
This commit is contained in:
Suzanne Daniels
2022-03-18 16:47:45 +01:00
parent 9ed25d38f6
commit 31e99139b1
3 changed files with 46 additions and 2 deletions
+2 -2
View File
@@ -120,7 +120,7 @@ const Background = props => {
their efforts! We'll put them in the spotlight ❤️.
<br />
</Block.Paragraph>
<Block.LinkButton href="https://bit.ly/backstage-nominate ">
<Block.LinkButton href="nominate ">
Nominate now
</Block.LinkButton>
</Block.TextBox>
@@ -148,7 +148,7 @@ const Background = props => {
</Block.TextBox>
</Block.Container>
</Block>
<Block small className="bg-black-grey">
<Block.Container style={{ justifyContent: 'flex-start' }}>
<Block.Graphic
+44
View File
@@ -0,0 +1,44 @@
/**
* Copyright (c) 2017-present, Facebook, Inc.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
const React = require('react');
const Components = require(`${process.cwd()}/core/Components.js`);
const Block = Components.Block;
const Background = props => {
const { config: siteConfig } = props;
const { baseUrl } = siteConfig;
return (
<main className="MainContent">
<Block small className="stripe-bottom bg-black-grey">
<Block.Container style={{ justifyContent: 'flex-start' }}>
<Block.Title>Contributor Spotlight nomination</Block.Title>
<Block.TextBox>
<Block.Paragraph>
</Block.Paragraph>
</Block.TextBox>
</Block.Container>
</Block>
<Block className="stripe bg-black">
<Block.Container style={{ justifyContent: 'flex-start' }}>
<iframe src="https://docs.google.com/forms/d/e/1FAIpQLSdiZ28O7vwHo6NrwirEzGSbuVyBANSv7ItHqRlgVvSz3Z5xqQ/viewform?embedded=true" width="800" height="1262" frameborder="0" marginheight="0" marginwidth="0">Loading</iframe>
</Block.Container>
</Block>
</main>
);
};
module.exports = Background;