Merge pull request #2220 from picklesrus/credits-stuff
Redo the credits page.
|
@ -1,459 +1,191 @@
|
|||
const React = require('react');
|
||||
const render = require('../../lib/render.jsx');
|
||||
const FormattedHTMLMessage = require('react-intl').FormattedHTMLMessage;
|
||||
const FormattedMessage = require('react-intl').FormattedMessage;
|
||||
|
||||
const injectIntl = require('react-intl').injectIntl;
|
||||
const Avatar = require('../../components/avatar/avatar.jsx');
|
||||
const Page = require('../../components/page/www/page.jsx');
|
||||
const People = require('./people.json');
|
||||
const Supporters = require('./supporters.json');
|
||||
const TitleBanner = require('../../components/title-banner/title-banner.jsx');
|
||||
|
||||
require('./credits.scss');
|
||||
|
||||
const Credits = () => (
|
||||
<div className="inner credits">
|
||||
<h1><FormattedMessage id="credits.title" /></h1>
|
||||
<h2>MIT Scratch Team</h2>
|
||||
<p><FormattedMessage id="credits.developers" /></p>
|
||||
<div className="credits">
|
||||
<TitleBanner className="masthead mod-blue-bg">
|
||||
<h1 className="title-banner-h1">
|
||||
<FormattedMessage id="credits.title" />
|
||||
</h1>
|
||||
</TitleBanner>
|
||||
<div className="content">
|
||||
<div className="people">
|
||||
<div className="mid-header">
|
||||
<h2>MIT Scratch Team</h2>
|
||||
<p>
|
||||
<FormattedMessage id="credits.developers" />
|
||||
</p>
|
||||
</div>
|
||||
<ul className="avatar-grid">
|
||||
{People.map((person, index) => (
|
||||
<li
|
||||
className="avatar-item"
|
||||
key={`person-${index}`}
|
||||
>
|
||||
<div>
|
||||
<a href={`https://scratch.mit.edu/users/${person.userName}/`}>
|
||||
<Avatar
|
||||
alt=""
|
||||
src={`https://cdn.scratch.mit.edu/get_image/user/${person.userId || 'default'}_80x80.png`}
|
||||
/>
|
||||
</a>
|
||||
</div>
|
||||
<span className="avatar-text">
|
||||
{person.name}
|
||||
</span>
|
||||
</li>
|
||||
))}
|
||||
</ul>
|
||||
</div>
|
||||
<div className="supporters">
|
||||
<div className="mid-header">
|
||||
<h2>
|
||||
<FormattedMessage id="credits.currentSponsors" />
|
||||
</h2>
|
||||
<p>
|
||||
<FormattedMessage id="credits.currentFinancialSupport" />
|
||||
</p>
|
||||
</div>
|
||||
<div className="logo-grid">
|
||||
{Supporters.map((supporter, index) => (
|
||||
<span
|
||||
className="logo"
|
||||
key={`logo-${index}`}
|
||||
>
|
||||
<a href={supporter.logoDestination}>
|
||||
{supporter.logoSrc ? (
|
||||
<img
|
||||
alt=""
|
||||
src={supporter.logoSrc}
|
||||
width={supporter.width}
|
||||
/>
|
||||
) :
|
||||
<div className="text-logo">
|
||||
{supporter.textLogo}
|
||||
</div>
|
||||
}
|
||||
</a>
|
||||
</span>
|
||||
))}
|
||||
</div>
|
||||
</div>
|
||||
<div className="acknowledge-content">
|
||||
<h2>
|
||||
<FormattedMessage id="credits.translationsTitle" />
|
||||
</h2>
|
||||
<p>
|
||||
<FormattedMessage
|
||||
id="credits.acknowledgementsTranslators"
|
||||
values={{
|
||||
translatorsLink: (
|
||||
<a href="http://wiki.scratch.mit.edu/wiki/Translators">
|
||||
<FormattedMessage id="credits.acknowledgementsTranslatorsLinkText" />
|
||||
</a>
|
||||
)
|
||||
}}
|
||||
/>
|
||||
</p>
|
||||
<h2>
|
||||
<FormattedMessage id="credits.illustrationsTitle" />
|
||||
</h2>
|
||||
<p>
|
||||
<FormattedMessage id="credits.acknowledgementsIllustrations" />
|
||||
</p>
|
||||
<p>
|
||||
Natalie Rosalinda Hall, Wren McDonald, Andrew Rae, Daria Skrybchenko,
|
||||
Robert Hunter, Alex Eben Meyer, Ding Ding Hu, Owen Davey.
|
||||
</p>
|
||||
<h2>
|
||||
<FormattedMessage id="credits.pastContributors" />
|
||||
</h2>
|
||||
<p>
|
||||
<FormattedMessage id="credits.pastContributorsThanks" />
|
||||
</p>
|
||||
<p>
|
||||
<FormattedMessage id="credits.otherContributors" />
|
||||
{' '}
|
||||
Ben Berg, Amos Blanton, Karen Brennan, Juanita Buitrago, Leo Burd,
|
||||
Gaia Carini, Kasia Chmielinski, Michelle Chung, Shane Clements,
|
||||
Hannah Cole, Sayamindu Dasgupta, Margarita Dekoli, Evelyn Eastmond,
|
||||
Dave Feinberg, Chris Graves, Megan Haddadi, Connor Hudson,
|
||||
Christina Huang, Tony Hwang, Abdulrahman Idlbi, Randy Jou, Lily Kim,
|
||||
Tauntaun Kim, Saskia Leggett, Tim Mickel, Amon Millner, Ricarose Roque,
|
||||
Andrea Saxman, Jay Silver, Tammy Stern, Lis Sylvan, Hanako Tjia, Claudia
|
||||
Urrea, Oren Zuckerman.
|
||||
</p>
|
||||
<p>
|
||||
<FormattedMessage id="credits.partnersBody" />
|
||||
</p>
|
||||
<h2>
|
||||
<FormattedMessage id="credits.researchersTitle" />
|
||||
</h2>
|
||||
<p>
|
||||
<FormattedMessage
|
||||
id="credits.researchersBody"
|
||||
values={{
|
||||
scratchResearchLink: (
|
||||
<a href="https://scratch.mit.edu/info/research/">
|
||||
<FormattedMessage id="credits.researchLinkText" />
|
||||
</a>
|
||||
)
|
||||
}}
|
||||
/>
|
||||
</p>
|
||||
<p>
|
||||
<FormattedMessage
|
||||
id="credits.researchersContributors"
|
||||
values={{
|
||||
nsfLink: (
|
||||
<a href="http://www.nsf.gov/awardsearch/showAward?AWD_ID=0325828">
|
||||
<FormattedMessage id="credits.researchNSFLinkText" />
|
||||
</a>
|
||||
),
|
||||
scratchEdLink: (
|
||||
<a href="http://scratched.gse.harvard.edu/">
|
||||
<FormattedMessage id="credits.researchScratchEdLinkText" />
|
||||
</a>
|
||||
)
|
||||
}}
|
||||
/>
|
||||
</p>
|
||||
<h2>
|
||||
<FormattedMessage id="credits.acknowledgementsTitle" />
|
||||
</h2>
|
||||
<p>
|
||||
<FormattedMessage id="credits.acknowledgementsContributors" />
|
||||
</p>
|
||||
<p>
|
||||
Susan Abend, Robbie Berg, Lauren Bessen, Keith Braadfladt,
|
||||
Susan Carillo, Will Denton, Nathan Dinsmore, Catherine Feldman,
|
||||
Jodi Finch, Ioana Fineberg, JT Galla, Rachel Garber, Cassy Gibbs,
|
||||
Brian Harvey, Roland Hebert, Tracy Ho, Benjamin Howe, Kapaya Katongo,
|
||||
Evan Karatzas, Christine Kim, Joren Lauwers, Mike Lee, Jeff Lieberman,
|
||||
Mark Loughridge, Kelly Liu, Anthony Lu, Danny Lutz, David Malan
|
||||
Wayne Marshall, John McIntosh, Paul Medlock-Walton, Dongfang (Tian) Mi,
|
||||
Ximena Miranda, Jens Moenig, Evan Moore, Geetha Narayanan, Kate Nazemi,
|
||||
Liddy Nevile, Wing Ngan, Derek O'Connell, Tim Radvan, Karen Randall,
|
||||
Ian Reynolds, Miriam Ruiz, Chinua Shaw, Ed Shems, Cynthia Solomon,
|
||||
Daniel Strimpel, Kilmer Sweazy, John Henry Thompson, Ubong Ukoh,
|
||||
Vladimir Vuksan, Han Xu.
|
||||
</p>
|
||||
<p>
|
||||
<FormattedMessage id="credits.acknowledgementsInfluencers" />
|
||||
</p>
|
||||
<p>
|
||||
<FormattedMessage id="credits.acknowledgementsCommunity" />
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>);
|
||||
|
||||
<ul>
|
||||
<li>
|
||||
<img
|
||||
alt="Christan Avatar"
|
||||
src="//cdn.scratch.mit.edu/get_image/user/2755634_170x170.png"
|
||||
/>
|
||||
<span className="name">Christan Balch</span>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<img
|
||||
alt="Carl Avatar"
|
||||
src="//cdn.scratch.mit.edu/get_image/user/3581881_170x170.png"
|
||||
/>
|
||||
<span className="name">Carl Bowman</span>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<img
|
||||
alt="Karishma Avatar"
|
||||
src="//cdn2.scratch.mit.edu/get_image/user/27383273_60x60.png"
|
||||
/>
|
||||
<span className="name">Karishma Chadha</span>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<img
|
||||
alt="Champika Avatar"
|
||||
src="//cdn.scratch.mit.edu/get_image/user/900283_170x170.png"
|
||||
/>
|
||||
<span className="name">Champika Fernando</span>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<img
|
||||
alt="Mark Avatar"
|
||||
src="//cdn.scratch.mit.edu/get_image/user/24137617_170x170.png"
|
||||
/>
|
||||
<span className="name">Mark Ferrell</span>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<img
|
||||
alt="Chris Avatar"
|
||||
src="//cdn.scratch.mit.edu/get_image/user/1494_170x170.png"
|
||||
/>
|
||||
<span className="name">Chris Garrity</span>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<img
|
||||
alt="Colby Avatar"
|
||||
src="//cdn.scratch.mit.edu/get_image/user/10866958_170x170.png"
|
||||
/>
|
||||
<span className="name">Colby Gutierrez-Kraybill</span>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<img
|
||||
alt="Paul Avatar"
|
||||
src="//cdn.scratch.mit.edu/get_image/user/21986973_170x170.png"
|
||||
/>
|
||||
<span className="name">Paul Kaplan</span>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<img
|
||||
alt="DD Avatar"
|
||||
src="//cdn.scratch.mit.edu/get_image/user/527836_170x170.png"
|
||||
/>
|
||||
<span className="name">DD Liu</span>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<img
|
||||
alt="Katelyn Avatar"
|
||||
src="//cdn.scratch.mit.edu/get_image/user/34607790_170x170.png"
|
||||
/>
|
||||
<span className="name">Katelyn Mann</span>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<img
|
||||
alt="Shruti Avatar"
|
||||
src="//cdn.scratch.mit.edu/get_image/user/3714374_170x170.png"
|
||||
/>
|
||||
<span className="name">Shruti Mohnot</span>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<img
|
||||
alt="Sarah Avatar"
|
||||
src="//cdn.scratch.mit.edu/get_image/user/246290_170x170.png"
|
||||
/>
|
||||
<span className="name">Sarah Otts</span>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<img
|
||||
alt="Carmelo Avatar"
|
||||
src="//cdn.scratch.mit.edu/get_image/user/2286560_170x170.png"
|
||||
/>
|
||||
<span className="name">Carmelo Presicce</span>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<img
|
||||
alt="Tina Avatar"
|
||||
src="//cdn2.scratch.mit.edu/get_image/user/25500116_170x170.png"
|
||||
/>
|
||||
<span className="name">Tina Quach</span>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<img
|
||||
alt="Mitchel Avatar"
|
||||
src="//cdn.scratch.mit.edu/get_image/user/167_170x170.png"
|
||||
/>
|
||||
<span className="name">Mitchel Resnick</span>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<img
|
||||
alt="ericr Avatar"
|
||||
src="//cdn.scratch.mit.edu/get_image/user/159_170x170.png"
|
||||
/>
|
||||
<span className="name">Eric Rosenbaum</span>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<img
|
||||
alt="Natalie Avatar"
|
||||
src="//cdn.scratch.mit.edu/get_image/user/169_170x170.png"
|
||||
/>
|
||||
<span className="name">Natalie Rusk</span>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<img
|
||||
alt="Ray Avatar"
|
||||
src="//cdn.scratch.mit.edu/get_image/user/2584924_170x170.png"
|
||||
/>
|
||||
<span className="name">Ray Schamp</span>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<img
|
||||
alt="Eric Avatar"
|
||||
src="//cdn.scratch.mit.edu/get_image/user/3484484_170x170.png"
|
||||
/>
|
||||
<span className="name">Eric Schilling</span>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<img
|
||||
alt="Andrew Avatar"
|
||||
src="//cdn.scratch.mit.edu/get_image/user/1709047_170x170.png"
|
||||
/>
|
||||
<span className="name">Andrew Sliwinski</span>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<img
|
||||
alt="Tracy Avatar"
|
||||
src="//cdn.scratch.mit.edu/get_image/user/18417774_170x170.png"
|
||||
/>
|
||||
<span className="name">Tracy Tang</span>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<img
|
||||
alt="Bryce Avatar"
|
||||
src="//cdn.scratch.mit.edu/get_image/user/2029640_170x170.png"
|
||||
/>
|
||||
<span className="name">Bryce Taylor</span>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<img
|
||||
alt="Matthew Avatar"
|
||||
src="//cdn.scratch.mit.edu/get_image/user/4373707_170x170.png"
|
||||
/>
|
||||
<span className="name">Matthew Taylor</span>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<img
|
||||
alt="Moran Avatar"
|
||||
src="//cdn.scratch.mit.edu/get_image/user/2678986_170x170.png"
|
||||
/>
|
||||
<span className="name">Moran Tsur</span>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<img
|
||||
alt="Chris Avatar"
|
||||
src="//cdn.scratch.mit.edu/get_image/user/3532363_170x170.png"
|
||||
/>
|
||||
<span className="name">Chris Willis-Ford</span>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<img
|
||||
alt="Kathy Avatar"
|
||||
src="//cdn.scratch.mit.edu/get_image/user/26779669_170x170.png"
|
||||
/>
|
||||
<span className="name">Kathy Wu</span>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<img
|
||||
alt="Julia Avatar"
|
||||
src="//cdn.scratch.mit.edu/get_image/user/2796185_170x170.png"
|
||||
/>
|
||||
<span className="name">Julia Zimmerman</span>
|
||||
</li>
|
||||
</ul>
|
||||
|
||||
<p><FormattedMessage id="credits.moderators" /></p>
|
||||
|
||||
<ul>
|
||||
<li>
|
||||
<img
|
||||
alt="Jolie Avatar"
|
||||
src="//cdn.scratch.mit.edu/get_image/user/2496866_170x170.png"
|
||||
/>
|
||||
<span className="name">Jolie Castellucci</span>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<img
|
||||
alt="Ellen Avatar"
|
||||
src="//cdn.scratch.mit.edu/get_image/user/24164779_170x170.png"
|
||||
/>
|
||||
<span className="name">Ellen Daoust</span>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<img
|
||||
alt="Linda Avatar"
|
||||
src="//cdn.scratch.mit.edu/get_image/user/1048810_170x170.png"
|
||||
/>
|
||||
<span className="name">Linda Fernsel</span>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<img
|
||||
alt="Mark Avatar"
|
||||
src="//cdn.scratch.mit.edu/get_image/user/49156_170x170.png"
|
||||
/>
|
||||
<span className="name">Mark Goff</span>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<img
|
||||
alt="Joel Avatar"
|
||||
src="//cdn2.scratch.mit.edu/get_image/user/26249744_60x60.png"
|
||||
/>
|
||||
<span className="name">Joel Gritter</span>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<img
|
||||
alt="Carolina Avatar"
|
||||
src="//cdn2.scratch.mit.edu/get_image/user/5311910_60x60.png"
|
||||
/>
|
||||
<span className="name">Carolina Kaufman</span>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<img
|
||||
alt="Dalton Avatar"
|
||||
src="//cdn.scratch.mit.edu/get_image/user/373646_170x170.png"
|
||||
/>
|
||||
<span className="name">Dalton Miner</span>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<img
|
||||
alt="Franchette Avatar"
|
||||
src="//cdn.scratch.mit.edu/get_image/user/159139_170x170.png"
|
||||
/>
|
||||
<span className="name">Franchette Viloria</span>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<img
|
||||
alt="Annie Avatar"
|
||||
src="//cdn.scratch.mit.edu/get_image/user/4747093_170x170.png"
|
||||
/>
|
||||
<span className="name">Annie Whitehouse</span>
|
||||
</li>
|
||||
</ul>
|
||||
|
||||
<h2><FormattedMessage id="credits.previousTitle" /></h2>
|
||||
<p>
|
||||
<FormattedMessage id="credits.previousBody" />
|
||||
|
||||
Ben Berg,
|
||||
Amos Blanton,
|
||||
Karen Brennan,
|
||||
Juanita Buitrago,
|
||||
Leo Burd,
|
||||
Gaia Carini,
|
||||
Kasia Chmielinski,
|
||||
Michelle Chung,
|
||||
Shane Clements,
|
||||
Hannah Cole,
|
||||
Sayamindu Dasgupta,
|
||||
Margarita Dekoli,
|
||||
Evelyn Eastmond,
|
||||
Dave Feinberg,
|
||||
Chris Graves,
|
||||
Megan Haddadi,
|
||||
Connor Hudson,
|
||||
Christina Huang,
|
||||
Tony Hwang,
|
||||
Abdulrahman Idlbi,
|
||||
Randy Jou,
|
||||
Lily Kim,
|
||||
Tauntaun Kim,
|
||||
Saskia Leggett,
|
||||
Tim Mickel,
|
||||
Amon Millner,
|
||||
Ricarose Roque,
|
||||
Andrea Saxman,
|
||||
Jay Silver,
|
||||
Tammy Stern,
|
||||
Lis Sylvan,
|
||||
Hanako Tjia,
|
||||
Claudia Urrea,
|
||||
Oren Zuckerman
|
||||
</p>
|
||||
|
||||
<h2>
|
||||
<FormattedMessage id="credits.partnersTitle" />
|
||||
</h2>
|
||||
<p>
|
||||
<FormattedMessage id="credits.partnersBody" />
|
||||
</p>
|
||||
|
||||
<h2>
|
||||
<FormattedMessage id="credits.researchersTitle" />
|
||||
</h2>
|
||||
<p>
|
||||
<FormattedHTMLMessage id="credits.researchersBody" />
|
||||
</p>
|
||||
|
||||
<h2>
|
||||
<FormattedMessage id="credits.acknowledgementsTitle" />
|
||||
</h2>
|
||||
<p>
|
||||
<FormattedHTMLMessage id="credits.acknowledgementsContributors" />
|
||||
|
||||
Susan Abend, Robbie Berg, Lauren Bessen, Keith Braadfladt, Susan Carillo,
|
||||
Will Denton, Nathan Dinsmore, Catherine Feldman, Jodi Finch, Ioana Fineberg,
|
||||
JT Galla, Rachel Garber, Chris Garrity, Cassy Gibbs, Brian Harvey,
|
||||
Roland Hebert, Tracy Ho, Benjamin Howe, Kapaya Katongo, Evan Karatzas,
|
||||
Christine Kim, Joren Lauwers, Mike Lee, Jeff Lieberman, Mark Loughridge,
|
||||
Kelly Liu, Anthony Lu, Danny Lutz, David Malan, Wayne Marshall,
|
||||
John McIntosh, Paul Medlock-Walton, Dongfang (Tian) Mi, Ximena Miranda,
|
||||
Jens Moenig, Evan Moore, Geetha Narayanan, Kate Nazemi, Liddy Nevile,
|
||||
Wing Ngan, Derek O'Connell, Tim Radvan, Karen Randall, Ian Reynolds,
|
||||
Miriam Ruiz, Chinua Shaw, Ed Shems, Cynthia Solomon, Daniel Strimpel,
|
||||
Kilmer Sweazy, John Henry Thompson, Ubong Ukoh, Vladimir Vuksan, Han Xu.
|
||||
|
||||
<FormattedHTMLMessage id="credits.acknowledgementsTranslators" />
|
||||
</p>
|
||||
<p>
|
||||
<FormattedMessage id="credits.acknowledgementsCommunity" />
|
||||
</p>
|
||||
<p>
|
||||
<FormattedMessage id="credits.acknowledgementsInfluencers" />
|
||||
</p>
|
||||
<h2>
|
||||
<FormattedMessage id="credits.supportersTitle" />
|
||||
</h2>
|
||||
<p>
|
||||
<FormattedMessage id="credits.supportersFinancialHeader" />
|
||||
</p>
|
||||
<p>
|
||||
<a href="http://www.nsf.gov/">National Science Foundation</a>,
|
||||
<a href="http://www.scratchfoundation.org/"> Scratch Foundation</a>,
|
||||
<a href="http:/www.siegelendowment.org"> Siegel Family Endowment</a>,
|
||||
<a href="http://www.google.org/"> Google</a>,
|
||||
<a href="http://www.legofoundation.com/"> LEGO Foundation</a>,
|
||||
<a href="http://www.intel.com/"> Intel</a>,
|
||||
<a href="http://www.turner.com/company/"> Cartoon Network</a>,
|
||||
<a href="http://www.fundacaolemann.org.br/lemann-foundation/"> Lemann Foundation</a>,
|
||||
<a href="https://www.macfound.org/"> MacArthur Foundation</a>.
|
||||
</p>
|
||||
|
||||
<p><FormattedMessage id="credits.supportersServicesHeader" /></p>
|
||||
<p>
|
||||
<a href="http://www.advancedinstaller.com/"> Advanced Installer</a>,
|
||||
<a href="http://aws.amazon.com/"> Amazon Web Services</a>,
|
||||
<a href="https://codetree.com/"> Codetree</a>,
|
||||
<a href="https://www.fastly.com/"> Fastly</a>,
|
||||
<a href="https://www.geckoboard.com"> Geckoboard</a>,
|
||||
<a href="https://github.com/"> Github</a>,
|
||||
<a href="https://www.inversoft.com/"> Inversoft</a>,
|
||||
<a href="http://mailchimp.com/"> MailChimp</a>,
|
||||
<a href="http://mandrill.com/"> Mandrill</a>,
|
||||
<a href="http://newrelic.com/"> New Relic</a>,
|
||||
<a href="https://www.pagerduty.com/"> PagerDuty</a>,
|
||||
<a href="https://www.pingdom.com/"> Pingdom</a>,
|
||||
<a href="https://www.rallydev.com/"> Rally</a>,
|
||||
<a href="https://saucelabs.com/"> SauceLabs</a>,
|
||||
<a href="https://screenhero.com/"> Screenhero</a>,
|
||||
<a href="https://getsentry.com/welcome/"> Sentry</a>,
|
||||
<a href="http://www.git-tower.com/"> Tower</a>,
|
||||
<a href="https://www.transifex.com/"> Transifex</a>,
|
||||
<a href="https://travis-ci.org/"> Travis-CI</a>.
|
||||
</p>
|
||||
|
||||
<p><FormattedMessage id="credits.supportersOpenHeader" /></p>
|
||||
<p>
|
||||
<a href="https://www.djangoproject.com/"> Django</a>,
|
||||
<a href="http://djangobb.org/"> DjangoBB</a>,
|
||||
<a href="https://www.docker.com/"> Docker</a>,
|
||||
<a href="https://www.elastic.co/"> Elasticsearch</a>,
|
||||
<a href="http://ganglia.sourceforge.net/"> Ganglia</a>,
|
||||
<a href="http://gunicorn.org"> Gunicorn</a>,
|
||||
<a href="https://jenkins-ci.org/"> Jenkins</a>,
|
||||
<a href="http://www.linux.org/"> Linux</a>,
|
||||
<a href="http://memcached.org/"> Memcached</a>,
|
||||
<a href="https://www.mediawiki.org/wiki/MediaWiki"> MediaWiki</a>,
|
||||
<a href="http://www.mysql.com/"> MySQL</a>,
|
||||
<a href="https://www.nagios.org/"> Nagios</a>,
|
||||
<a href="https://www.nginx.com/resources/wiki/"> Nginx</a>,
|
||||
<a href="https://nodejs.org/en/"> Node.js</a>,
|
||||
<a href="http://www.postgresql.org/"> PostgreSQL</a>,
|
||||
<a href="https://www.python.org/"> Python</a>,
|
||||
<a href="http://redis.io/"> Redis</a>,
|
||||
<a href="http://saltstack.com/"> SaltStack</a>,
|
||||
<a href="https://github.com/etsy/statsd/"> StatsD</a>,
|
||||
<a href="http://www.ubuntu.com/"> Ubuntu</a>,
|
||||
<a href="https://www.varnish-cache.org/"> Varnish</a>.
|
||||
</p>
|
||||
</div>
|
||||
);
|
||||
|
||||
|
||||
render(<Page><Credits /></Page>, document.getElementById('app'));
|
||||
const WrappedCredits = injectIntl(Credits);
|
||||
render(<Page><WrappedCredits /></Page>, document.getElementById('app'));
|
||||
|
|
|
@ -1,39 +1,172 @@
|
|||
@import "../../colors";
|
||||
|
||||
.credits {
|
||||
p {
|
||||
line-height: 1.5rem;
|
||||
#view {
|
||||
padding: 0;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
.credits {
|
||||
.avatar-grid {
|
||||
display: flex;
|
||||
margin: 0 auto;
|
||||
padding: 64px 0;
|
||||
max-width: 864px;
|
||||
list-style: none;
|
||||
flex-wrap: wrap;
|
||||
flex-flow: row wrap;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.content {
|
||||
padding-top: 40px;
|
||||
}
|
||||
|
||||
.avatar-item {
|
||||
display: inline-block;
|
||||
margin: 0;
|
||||
padding-bottom: 32px;
|
||||
text-align: center;
|
||||
line-height: 1.25rem;
|
||||
|
||||
img {
|
||||
$img-border: rgba(0, 0, 0, .05);
|
||||
border: 2px solid $img-border;
|
||||
border-radius: 8px;
|
||||
background-color: $ui-white;
|
||||
width: 80px;
|
||||
height: 80px;
|
||||
}
|
||||
|
||||
.avatar-text {
|
||||
display: inline-block;
|
||||
width: 144px;
|
||||
font-size: .875rem;
|
||||
word-wrap: break-word;
|
||||
|
||||
a {
|
||||
white-space: normal;
|
||||
word-wrap: break-word; /* Overrides: https://github.com/LLK/scratch-www/blob/develop/src/main.scss#L43-L47 */
|
||||
}
|
||||
}
|
||||
|
||||
ul {
|
||||
display: flex;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
list-style: none;
|
||||
flex-wrap: wrap;
|
||||
.acknowledge-content {
|
||||
margin: 0 176px;
|
||||
padding: 2.5rem 0 5.75rem 0;
|
||||
max-width: 520px;
|
||||
|
||||
p {
|
||||
margin: 0;
|
||||
padding-bottom: 1.875rem;
|
||||
line-height: 1.5rem;
|
||||
}
|
||||
|
||||
h2 {
|
||||
padding: 3rem 0 1.5rem;
|
||||
line-height: 1.2em;
|
||||
font-size: 2rem;
|
||||
}
|
||||
}
|
||||
|
||||
li {
|
||||
display: inline-block;
|
||||
margin: 10px 0;
|
||||
width: 188px;
|
||||
text-align: center;
|
||||
.text-logo {
|
||||
max-width: 140px;
|
||||
text-align: center;
|
||||
font-size: 16px;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
img {
|
||||
margin: 10px 23px;
|
||||
border: 2px;
|
||||
border-style: solid;
|
||||
border-radius: 50%;
|
||||
border-color: $ui-dark-gray;
|
||||
background-color: $ui-white;
|
||||
padding: 20px;
|
||||
width: 85px;
|
||||
height: 85px;
|
||||
.mid-header {
|
||||
display: flex;
|
||||
margin: 0 88px;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
|
||||
h2 {
|
||||
line-height: 1.2em;
|
||||
}
|
||||
}
|
||||
|
||||
.logo-grid {
|
||||
display: flex;
|
||||
margin: 0 auto;
|
||||
max-width: 864px;
|
||||
flex-wrap: wrap;
|
||||
justify-content: space-around;
|
||||
align-items: center;
|
||||
|
||||
}
|
||||
|
||||
.supporters {
|
||||
$bg-grey: #f7f6f8;
|
||||
background-color: $bg-grey;
|
||||
padding: 5.25rem 0;
|
||||
}
|
||||
|
||||
.logo {
|
||||
padding: 84px 24px 0;
|
||||
}
|
||||
|
||||
.title-banner {
|
||||
display: flex;
|
||||
padding: 0;
|
||||
height: 152px;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.title-banner-h1 {
|
||||
font-size: 2rem;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@media only screen and (min-width: 477px) and (max-width: 768px) {
|
||||
.credits {
|
||||
.acknowledge-content {
|
||||
margin: 0 88px;
|
||||
}
|
||||
}
|
||||
}
|
||||
@media only screen and (min-width: 365px) and (max-width: 476px) {
|
||||
.credits {
|
||||
.avatar-item {
|
||||
padding-bottom: 16px;
|
||||
|
||||
.avatar-text {
|
||||
width: 112px;
|
||||
}
|
||||
}
|
||||
|
||||
.acknowledge-content,
|
||||
.mid-header {
|
||||
margin: 0 44px;
|
||||
}
|
||||
}
|
||||
}
|
||||
@media only screen and (max-width: 364px) {
|
||||
.credits {
|
||||
.avatar-item {
|
||||
padding-bottom: 16px;
|
||||
|
||||
img {
|
||||
width: 56px;
|
||||
height: 56px;
|
||||
}
|
||||
|
||||
.avatar-text {
|
||||
width: 96px;
|
||||
}
|
||||
}
|
||||
|
||||
.logo-grid {
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.acknowledge-content {
|
||||
margin: 0 12px;
|
||||
}
|
||||
|
||||
.logo {
|
||||
padding: 36px;
|
||||
}
|
||||
|
||||
.avatar-grid {
|
||||
margin: 0 12px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,20 +1,36 @@
|
|||
{
|
||||
"credits.title": "Scratch Credits and Contributors",
|
||||
"credits.developers": "Scratch is designed and developed by the Lifelong Kindergarten Group at MIT Media Lab:",
|
||||
"credits.title": "Scratch Credits & Contributors",
|
||||
"credits.developers": "Scratch is designed, developed, and moderated by the Lifelong Kindergarten Group at MIT Media Lab:",
|
||||
"credits.moderators": "The team of Scratch moderators manages, supports, and improves the Scratch online community:",
|
||||
"credits.previousTitle": "Previous MIT Scratch Team Members",
|
||||
"credits.previousBody": "Many important contributions have been made by previous Scratch Team members, including John Maloney (who led software development for the first decade of Scratch) and Andrés Monroy-Hernández (who led the development of the first Scratch community website). Other contributors include:",
|
||||
"credits.partnersTitle": "Design and Development Partners",
|
||||
"credits.researchersIntro": "Research on Scratch is being conducted by members of the MIT Scratch Team and researchers at other universities, including:",
|
||||
"credits.partnersBody": "Paula Bontá and Brian Silverman, Playful Invention Company (who started contributing to the design of Scratch even before it was called Scratch).",
|
||||
"credits.researchersTitle": "Scratch Researchers",
|
||||
"credits.researchersBody": "<a href=\"https://scratch.mit.edu/info/research/\">Research on Scratch</a> is being conducted by members of the MIT Scratch Team and researchers at other universities, including Yasmin Kafai (who collaborated on the <a href=\"http://www.nsf.gov/awardsearch/showAward?AWD_ID=0325828\">initial NSF Scratch grant</a>) at the University of Pennsylvania Graduate School of Education, Karen Brennan (who leads the <a href=\"http://scratched.gse.harvard.edu/\">ScratchEd project</a>) at the Harvard Graduate School of Education, Benjamin Mako Hill at the University of Washington, Andrés Monroy Hernández at Microsoft Research, Mimi Ito and Crystle Martin at the University of California, Irvine, Quinn Burke at College of Charleston, Deborah Fields at Utah State University, and Kylie Peppler at Indiana University.",
|
||||
"credits.researchersBody" : "{scratchResearchLink} is being conducted by members of the MIT Scratch Team and researchers at other universities, including:",
|
||||
"credits.researchLinkText": "Research on Scratch",
|
||||
"credits.researchersContributors" : "Yasmin Kafai (who collaborated on the {nsfLink}) at the University of Pennsylvania Graduate School of Education, Karen Brennan (who leads the {scratchEdLink}) at the Harvard Graduate School of Education, Benjamin Mako Hill at the University of Washington, Andrés Monroy Hernández at Microsoft Research, Mimi Ito and Crystle Martin at the University of California, Irvine, Quinn Burke at College of Charleston, Deborah Fields at Utah State University, and Kylie Peppler at Indiana University.",
|
||||
"credits.researchNSFLinkText" : "initial NSF Scratch grant",
|
||||
"credits.researchScratchEdLinkText" : "ScratchEd project",
|
||||
"credits.acknowledgementsTitle": "Acknowledgements",
|
||||
"credits.acknowledgementsContributors": "The following people have also contributed to the development and support of Scratch over the years:",
|
||||
"credits.acknowledgementsTranslators": "With the help of <a href=\"http://wiki.scratch.mit.edu/wiki/Translators\">Scratch Translators</a> around the world, Scratch is available in many languages.",
|
||||
"credits.acknowledgementsTranslators": "With the help of {translatorsLink} around the world, Scratch is available in many languages.",
|
||||
"credits.acknowledgementsTranslatorsLinkText": "Scratch Translators",
|
||||
"credits.acknowledgementsCommunity": "We greatly appreciate all of the contributions by members of the worldwide Scratch community, who have shaped the direction of Scratch by sharing their projects, comments, and ideas.",
|
||||
"credits.acknowledgementsInfluencers": "The ideas of Seymour Papert and Alan Kay have deeply inspired and influenced our work on Scratch.",
|
||||
"credits.supportersTitle": "Supporting Organizations",
|
||||
"credits.supportersFinancialHeader": "The following organizations have provided major financial support for Scratch:",
|
||||
"credits.supportersServicesHeader": "The following organizations donate their services to help keep the Scratch project running:",
|
||||
"credits.supportersOpenHeader": "Scratch would not be possible without free and open source software, including:"
|
||||
"credits.supportersOpenHeader": "Scratch would not be possible without free and open source software, including:",
|
||||
"credits.currentSponsors": "Current Sponsors",
|
||||
"credits.currentFinancialSupport": "The following organizations are providing major financial support for Scratch:",
|
||||
"credits.translationsTitle": "Translations",
|
||||
"credits.illustrationsTitle": "Illustrations",
|
||||
"credits.acknowledgementsIllustrations": "Many thanks to the following artists for their contributions to the Scratch 3.0 sprite library:",
|
||||
"credits.soundsTitle": "Sounds",
|
||||
"credits.pastContributors": "Past Contributors",
|
||||
"credits.pastContributorsThanks" : "Many important contributions have been made by previous Scratch Team members, including John Maloney (who led software development for the first decade of Scratch) and Andrés Monroy-Hernández (who led the development of the first Scratch community website).",
|
||||
"credits.otherContributors": "Other contributors include:",
|
||||
"credits.acknowledgementsSound": "Thanks to the following freesound.org artists:"
|
||||
}
|
||||
|
|
242
src/views/credits/people.json
Normal file
|
@ -0,0 +1,242 @@
|
|||
[
|
||||
{
|
||||
"userName": "labdalla",
|
||||
"userId": 35687410,
|
||||
"name": "Lena Abdalla"
|
||||
},
|
||||
{
|
||||
"userName": "shaanmasala",
|
||||
"userId": "29995562",
|
||||
"name": "Yusuf Ahmad"
|
||||
},
|
||||
{
|
||||
"userName": "ceebee",
|
||||
"userId": 2755634,
|
||||
"name": "christan balch"
|
||||
},
|
||||
{
|
||||
"userName": "Zinnea",
|
||||
"userId": 35911243,
|
||||
"name": "Zo\u00eb Bentley"
|
||||
},
|
||||
{
|
||||
"userName": "designerd",
|
||||
"userId": 3581881,
|
||||
"name": "Carl Bowman"
|
||||
},
|
||||
{
|
||||
"userName": "leoburd",
|
||||
"userId": 385,
|
||||
"name": "Leo Burd"
|
||||
},
|
||||
{
|
||||
"userName": "FredDog",
|
||||
"userId": 2496866,
|
||||
"name": "Jolie Castellucci"
|
||||
},
|
||||
{
|
||||
"userName": "kittyloaf",
|
||||
"userId": 27383273,
|
||||
"name": "Karishma Chadha"
|
||||
},
|
||||
{
|
||||
"userName": "SunnyDay4aBlueJay",
|
||||
"userId": 24164779,
|
||||
"name": "Ellen Daoust"
|
||||
},
|
||||
{
|
||||
"userName": "shruti",
|
||||
"userId": 3714374,
|
||||
"name": "Shruti Dhariwal"
|
||||
},
|
||||
{
|
||||
"userName": "Champ99",
|
||||
"userId": 900283,
|
||||
"name": "Champika Fernando"
|
||||
},
|
||||
{
|
||||
"userName": "LiFaytheGoblin",
|
||||
"userId": 1048810,
|
||||
"name": "Linda Fernsel"
|
||||
},
|
||||
{
|
||||
"userName": "dietbacon",
|
||||
"userId": 24137617,
|
||||
"name": "Mark Ferrell"
|
||||
},
|
||||
{
|
||||
"userName": "rmiel",
|
||||
"userId": 34557192,
|
||||
"name": "Elizabeth Foster"
|
||||
},
|
||||
{
|
||||
"userName": "lilyland",
|
||||
"userId": 17184580,
|
||||
"name": "Lily Gabaree"
|
||||
},
|
||||
{
|
||||
"userName": "chrisg",
|
||||
"userId": 1494,
|
||||
"name": "Chris Garrity"
|
||||
},
|
||||
{
|
||||
"userName": "Paddle2See",
|
||||
"userId": 49156,
|
||||
"name": "Mark Goff"
|
||||
},
|
||||
{
|
||||
"userName": "GulpTea",
|
||||
"userId": 26249744,
|
||||
"name": "Joel Gritter"
|
||||
},
|
||||
{
|
||||
"userName": "codubee",
|
||||
"userId": 10866958,
|
||||
"name": "Colby Gutierrez-Kraybill"
|
||||
},
|
||||
{
|
||||
"userName": "khanning",
|
||||
"userId": 1553886,
|
||||
"name": "Kreg Hanning"
|
||||
},
|
||||
{
|
||||
"userName": "pizzafordessert",
|
||||
"userId": 22183577,
|
||||
"name": "Sean Hickey"
|
||||
},
|
||||
{
|
||||
"userName": "theladynico",
|
||||
"userId": 35550237,
|
||||
"name": "Nicole Hughes"
|
||||
},
|
||||
{
|
||||
"userName": "sgcc_",
|
||||
"userId": 21986973,
|
||||
"name": "Paul Kaplan"
|
||||
},
|
||||
{
|
||||
"userName": "dsquare",
|
||||
"userId": 527836,
|
||||
"name": "DD Liu"
|
||||
},
|
||||
{
|
||||
"userName": "dinopickles",
|
||||
"userId": 34607790,
|
||||
"name": "Katelyn Mann"
|
||||
},
|
||||
{
|
||||
"userName": "harakou",
|
||||
"userId": 373646,
|
||||
"name": "Dalton Miner"
|
||||
},
|
||||
{
|
||||
"userName": "mwikali",
|
||||
"userId": 24838781,
|
||||
"name": "Marian Muthui"
|
||||
},
|
||||
{
|
||||
"userName": "me_win",
|
||||
"userId": 7664502,
|
||||
"name": "My Nguyen"
|
||||
},
|
||||
{
|
||||
"userName": "lob12",
|
||||
"userId": 2860339,
|
||||
"name": "Lisa O'Brien"
|
||||
},
|
||||
{
|
||||
"userName": "",
|
||||
"userId": "",
|
||||
"name": "Abisola Okuk"
|
||||
},
|
||||
{
|
||||
"userName": "KayOh",
|
||||
"userId": "3018280",
|
||||
"name": "Kristin Osiecki"
|
||||
},
|
||||
{
|
||||
"userName": "scmb1",
|
||||
"userId": 246290,
|
||||
"name": "Sarah Otts"
|
||||
},
|
||||
{
|
||||
"userName": "tarmelop",
|
||||
"userId": 2286560,
|
||||
"name": "Carmelo Presicce"
|
||||
},
|
||||
{
|
||||
"userName": "quacht",
|
||||
"userId": 25500116,
|
||||
"name": "Tina Quach"
|
||||
},
|
||||
{
|
||||
"userName": "mres",
|
||||
"userId": 167,
|
||||
"name": "Mitchel Resnick"
|
||||
},
|
||||
{
|
||||
"userName": "ericr",
|
||||
"userId": 159,
|
||||
"name": "Eric Rosenbaum"
|
||||
},
|
||||
{
|
||||
"userName": "natalie",
|
||||
"userId": 169,
|
||||
"name": "Natalie Rusk"
|
||||
},
|
||||
{
|
||||
"userName": "raimondious",
|
||||
"userId": 2584924,
|
||||
"name": "Ray Schamp"
|
||||
},
|
||||
{
|
||||
"userName": "speakvisually",
|
||||
"userId": 3484484,
|
||||
"name": "Eric Schilling"
|
||||
},
|
||||
{
|
||||
"userName": "thisandagain",
|
||||
"userId": 1709047,
|
||||
"name": "Andrew Sliwinski"
|
||||
},
|
||||
{
|
||||
"userName": "BrycedTea",
|
||||
"userId": 2029640,
|
||||
"name": "Bryce Taylor"
|
||||
},
|
||||
{
|
||||
"userName": "jaleesa",
|
||||
"userId": 2374106,
|
||||
"name": "Jaleesa Trapp"
|
||||
},
|
||||
{
|
||||
"userName": "cheddargirl",
|
||||
"userId": 159139,
|
||||
"name": "Franchette Viloria"
|
||||
},
|
||||
{
|
||||
"userName": "wheelsonfire",
|
||||
"userId": 10001044,
|
||||
"name": "Ben Wheeler"
|
||||
},
|
||||
{
|
||||
"userName": "achouse",
|
||||
"userId": 4747093,
|
||||
"name": "Annie Whitehouse"
|
||||
},
|
||||
{
|
||||
"userName": "cwillisf",
|
||||
"userId": 3532363,
|
||||
"name": "Chris Willis-Ford"
|
||||
},
|
||||
{
|
||||
"userName": "pondermake",
|
||||
"userId": 26779669,
|
||||
"name": "Kathy Wu"
|
||||
},
|
||||
{
|
||||
"userName": "stymphalianbirb",
|
||||
"userId": 2796185,
|
||||
"name": "Julia Zimmerman"
|
||||
}
|
||||
]
|
61
src/views/credits/supporters.json
Normal file
|
@ -0,0 +1,61 @@
|
|||
[
|
||||
{
|
||||
"logoSrc": "../images/credits/siegelfamily.png",
|
||||
"logoDestination": "https://www.siegelendowment.org",
|
||||
"width": "146px"
|
||||
},
|
||||
{
|
||||
"logoSrc": "../images/credits/smilegate.png",
|
||||
"logoDestination": "https://www.smilegate.com/",
|
||||
"width": "162px"
|
||||
},
|
||||
{
|
||||
"logoSrc": "../svgs/credits/google.svg",
|
||||
"logoDestination": "https://google.com/",
|
||||
"width": "124px"
|
||||
},
|
||||
{
|
||||
"textLogo": "Little Bluebridge Foundation",
|
||||
"logoDestination": ""
|
||||
},
|
||||
{
|
||||
"logoSrc": "../images/credits/legofoundation.png",
|
||||
"logoDestination": "https://www.legofoundation.com",
|
||||
"width": "240px"
|
||||
},
|
||||
{
|
||||
"logoSrc": "../images/credits/lemann.png",
|
||||
"logoDestination": "https://fundacaolemann.org.br/en/co-invest",
|
||||
"width": "156px"
|
||||
},
|
||||
{
|
||||
"logoSrc": "../svgs/credits/fastly.svg",
|
||||
"logoDestination": "https://www.fastly.com/",
|
||||
"width": "108px"
|
||||
},
|
||||
{
|
||||
"logoSrc": "../images/credits/taledu.png",
|
||||
"logoDestination": "https://en.100tal.com/",
|
||||
"width": "188px"
|
||||
},
|
||||
{
|
||||
"logoSrc": "../images/credits/lego-education.png",
|
||||
"logoDestination": "https://education.lego.com",
|
||||
"width": "194px"
|
||||
},
|
||||
{
|
||||
"logoSrc": "../svgs/credits/cartoonnetwork.svg",
|
||||
"logoDestination": "https://www.cartoonnetwork.com/",
|
||||
"width": "78px"
|
||||
},
|
||||
{
|
||||
"logoSrc": "../images/credits/brainpop.png",
|
||||
"logoDestination": "https://www.brainpop.com/",
|
||||
"width": "78px"
|
||||
},
|
||||
{
|
||||
"logoSrc": "../svgs/credits/amazonws.svg",
|
||||
"logoDestination": "https://aws.amazon.com/",
|
||||
"width": "82px"
|
||||
}
|
||||
]
|
BIN
static/images/credits/brainpop.png
Normal file
After Width: | Height: | Size: 11 KiB |
BIN
static/images/credits/lego-education.png
Normal file
After Width: | Height: | Size: 32 KiB |
BIN
static/images/credits/legofoundation.png
Normal file
After Width: | Height: | Size: 11 KiB |
BIN
static/images/credits/lemann.png
Normal file
After Width: | Height: | Size: 52 KiB |
BIN
static/images/credits/siegelfamily.png
Normal file
After Width: | Height: | Size: 51 KiB |
BIN
static/images/credits/smilegate.png
Normal file
After Width: | Height: | Size: 7.2 KiB |
BIN
static/images/credits/taledu.png
Normal file
After Width: | Height: | Size: 26 KiB |
1
static/svgs/credits/amazonws.svg
Normal file
|
@ -0,0 +1 @@
|
|||
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" x="0" y="0" viewBox="0 0 300 182" xml:space="preserve"><style>.st1{fill:#f90}</style><path d="M84.2 66.3c0 3.7.4 6.7 1.1 8.9.8 2.2 1.8 4.6 3.2 7.2.5.8.7 1.6.7 2.3 0 1-.6 2-1.9 3L81 91.8c-.9.6-1.8.9-2.6.9-1 0-2-.5-3-1.4-1.4-1.5-2.6-3.1-3.6-4.7-1-1.7-2-3.6-3.1-5.9-7.7 9.2-17.5 13.8-29.3 13.8-8.4 0-15.1-2.4-20-7.2-4.9-4.8-7.4-11.2-7.4-19.2 0-8.5 3-15.4 9.1-20.6s14.2-7.8 24.4-7.8c3.4 0 6.9.3 10.6.8 3.7.5 7.5 1.3 11.5 2.2v-7.3c0-7.6-1.6-12.9-4.7-16-3.2-3.1-8.6-4.6-16.3-4.6-3.5 0-7.1.4-10.8 1.3-3.7.9-7.3 2-10.8 3.4-1.6.7-2.8 1.1-3.5 1.3-.7.2-1.2.3-1.6.3-1.4 0-2.1-1-2.1-3.1v-4.9c0-1.6.2-2.8.7-3.5s1.4-1.4 2.8-2.1C24.8 5.7 29 4.2 33.9 3 38.8 1.7 44 1.1 49.5 1.1c11.9 0 20.6 2.7 26.1 8.1C81.2 14.8 84 23 84 33.9v32.3h.2zM43.7 81.4c3.3 0 6.7-.6 10.3-1.8 3.6-1.2 6.8-3.4 9.5-6.4 1.6-1.9 2.8-4 3.4-6.4.6-2.4 1-5.3 1-8.7V54c-2.9-.7-6-1.3-9.2-1.7s-6.3-.6-9.4-.6c-6.7 0-11.6 1.3-14.9 4-3.3 2.7-4.9 6.5-4.9 11.5 0 4.7 1.2 8.2 3.7 10.6 2.4 2.4 5.9 3.6 10.5 3.6zm80.1 10.8c-1.8 0-3-.3-3.8-1-.8-.6-1.5-2-2.1-3.9L94.5 10.2c-.6-2-.9-3.3-.9-4 0-1.6.8-2.5 2.4-2.5h9.8c1.9 0 3.2.3 3.9 1 .8.6 1.4 2 2 3.9l16.8 66.1L144 8.6c.5-2 1.1-3.3 1.9-3.9.8-.6 2.2-1 4-1h8c1.9 0 3.2.3 4 1 .8.6 1.5 2 1.9 3.9l15.8 66.9 17.3-66.9c.6-2 1.3-3.3 2-3.9.8-.6 2.1-1 3.9-1h9.3c1.6 0 2.5.8 2.5 2.5 0 .5-.1 1-.2 1.6-.1.6-.3 1.4-.7 2.5l-24 77.1c-.6 2-1.3 3.3-2.1 3.9-.8.6-2.1 1-3.8 1H175c-1.9 0-3.2-.3-4-1s-1.5-2-1.9-4L153.7 23l-15.4 64.3c-.5 2-1.1 3.3-1.9 4-.8.7-2.2 1-4 1h-8.6zM252 94.9c-5.2 0-10.4-.6-15.4-1.8-5-1.2-8.9-2.5-11.5-4-1.6-.9-2.7-1.9-3.1-2.8-.4-.9-.6-1.9-.6-2.8v-5.1c0-2.1.8-3.1 2.3-3.1.6 0 1.2.1 1.8.3.6.2 1.5.6 2.5 1 3.4 1.5 7.1 2.7 11 3.5 4 .8 7.9 1.2 11.9 1.2 6.3 0 11.2-1.1 14.6-3.3 3.4-2.2 5.2-5.4 5.2-9.5 0-2.8-.9-5.1-2.7-7-1.8-1.9-5.2-3.6-10.1-5.2l-14.5-4.5c-7.3-2.3-12.7-5.7-16-10.2-3.3-4.4-5-9.3-5-14.5 0-4.2.9-7.9 2.7-11.1s4.2-6 7.2-8.2c3-2.3 6.4-4 10.4-5.2S250.9.9 255.3.9c2.2 0 4.5.1 6.7.4 2.3.3 4.4.7 6.5 1.1 2 .5 3.9 1 5.7 1.6s3.2 1.2 4.2 1.8c1.4.8 2.4 1.6 3 2.5.6.8.9 1.9.9 3.3v4.7c0 2.1-.8 3.2-2.3 3.2-.8 0-2.1-.4-3.8-1.2-5.7-2.6-12.1-3.9-19.2-3.9-5.7 0-10.2.9-13.3 2.8-3.1 1.9-4.7 4.8-4.7 8.9 0 2.8 1 5.2 3 7.1 2 1.9 5.7 3.8 11 5.5l14.2 4.5c7.2 2.3 12.4 5.5 15.5 9.6 3.1 4.1 4.6 8.8 4.6 14 0 4.3-.9 8.2-2.6 11.6-1.8 3.4-4.2 6.4-7.3 8.8-3.1 2.5-6.8 4.3-11.1 5.6-4.5 1.4-9.2 2.1-14.3 2.1z" fill="#252f3e"/><path class="st1" d="M270.9 143.4c-32.8 24.2-80.5 37.1-121.5 37.1-57.5 0-109.3-21.3-148.4-56.6-3.1-2.8-.3-6.6 3.4-4.4 42.3 24.5 94.5 39.4 148.5 39.4 36.4 0 76.4-7.6 113.2-23.1 5.5-2.5 10.2 3.6 4.8 7.6z"/><path class="st1" d="M284.6 127.8c-4.2-5.4-27.7-2.6-38.4-1.3-3.2.4-3.7-2.4-.8-4.5 18.8-13.2 49.6-9.4 53.2-5 3.6 4.5-1 35.3-18.6 50.1-2.7 2.3-5.3 1.1-4.1-1.9 4-9.8 12.9-32.1 8.7-37.4z"/></svg>
|
After Width: | Height: | Size: 2.7 KiB |
1
static/svgs/credits/cartoonnetwork.svg
Normal file
|
@ -0,0 +1 @@
|
|||
<svg version="1.1" id="svg2" xmlns="http://www.w3.org/2000/svg" x="0" y="0" viewBox="0 0 300 175" xml:space="preserve"><style>.st1{fill:#010101}.st2{fill:#fefefe}</style><path id="path1984" d="M145.9 0h145.9v145.8H145.9V0z" fill="#fff"/><path id="path6" class="st1" d="M0 0h145.9v145.8H0V0z"/><path id="path8" class="st2" d="M61.5 9.8c17.9-4.6 37.7-.8 52.8 9.8 7.9 5.5 14.5 12.8 19.3 21.1-10.3 5.8-20.4 11.7-30.7 17.5-1.8 1-3.7 2-5.5 3.2-2.8-4.8-7.4-8.7-12.7-10.5-3.6-1.3-7.5-1.5-11.2-1-10.9 1.4-20 11.5-19.8 22.6-.5 9.7 6 19.1 15.1 22.4 6.7 2.6 14.7 1.8 20.8-2.1 3.3-2 5.9-5 7.9-8.3 6.9 4.1 13.9 8 20.8 12 5.1 2.9 10.2 5.9 15.3 8.7-8.6 14.9-23.2 26.3-39.9 30.6-2.1.7-4.3.9-6.4 1.4-4.9.6-9.8 1.1-14.7.6-14.8-.8-29.1-7.1-39.9-17.2C21.6 110.4 14.2 96 12.4 80.8c-2-15.1 1.9-30.9 10.3-43.6 8.9-13.6 23-23.7 38.8-27.4z"/><path id="path10" class="st1" d="M156.3 10.5H198c14 17.3 27.8 34.8 41.8 52.1V10.5h41.7v125h-41.7c-13.6-17-27.3-34-40.9-51.1-.3-.3-.5-.6-.8-.9.1 17.3 0 34.6 0 52h-41.7c-.1-41.7-.1-83.4-.1-125z"/><path id="path12" class="st1" d="M4.8 165.2c-.2-4.1 2.8-8 6.8-9 4-1.3 8.6.7 10.6 4.3-1.5 1.1-3.3 1.8-4.8 2.9-.7-.8-1.5-1.7-2.7-1.9-1.9-.4-3.9 1-4.2 2.9-.3 1 .2 1.9.4 2.8 1.6 2.1 5.1 2 6.4-.3 1.6 1 3.2 1.9 4.8 2.8-1.7 2.8-4.9 4.9-8.3 4.5-4.7.5-9.2-4.1-9-9z"/><path id="path14" class="st1" d="M89.3 156.1c3.4-.7 7.1.8 9.2 3.5 3 3.9 2.2 10.1-1.8 13-2.3 1.9-5.4 2-8.2 1.6-2.3-.6-4.3-2.2-5.5-4.2-1.4-2.4-1.5-5.3-.7-7.9 1-3.1 3.8-5.5 7-6z"/><path id="path16" class="st1" d="M108.6 156.3c4.8-1.6 10.6 1.8 11.5 6.7 1.1 4.1-1.1 8.8-5 10.6-1.8 1-4 .8-6 .7-3.1-.6-5.7-2.9-6.8-5.8-1.9-4.9 1.1-11 6.3-12.2z"/><path id="path18" class="st1" d="M237.4 156.3c5.3-1.8 11.7 2.5 11.8 8.1.4 3.4-1.3 6.8-4.2 8.6-2.1 1.5-4.8 1.5-7.3 1.2-3.1-.7-5.7-3.2-6.7-6.3-.5-1.9-.5-3.9.1-5.8 1-2.7 3.3-5.1 6.3-5.8z"/><path id="path20" class="st1" d="M269.9 156.3h6v5.7c1.5-1.8 2.9-3.8 4.4-5.7h7.7c-2.4 2.8-4.6 5.8-7 8.6 2.4 3 4.7 6.2 7.1 9.3h-7.7c-1.4-2.2-2.9-4.5-4.4-6.7v6.7h-6c-.1-6-.1-11.9-.1-17.9z"/><path id="path22" class="st1" d="M28 156.3c3-.1 6 0 9 0 1.3 3.6 2.3 7.3 3.5 10.9.9 2.3 1.3 4.8 2.3 7h-6.5c-.3-1-.5-2.1-.9-3.1h-5.5c-.4 1-.7 2-1 3h-6.3c1.7-5.9 3.8-11.8 5.4-17.8z"/><path id="path24" class="st1" d="M44.3 156.3c3.7 0 7.5-.1 11.2 0 3.8 0 6.9 4.2 5.7 7.9-.4 1.8-1.8 3.2-3.3 4.1 1.3 1.9 2.4 4 3.6 5.9h-6.7c-1-1.7-1.8-3.6-2.8-5.3-.6 0-1.2 0-1.8.1v5.2h-6c.1-6 .1-11.9.1-17.9z"/><path id="path26" class="st1" d="M63 161.5v-5.2h17.9v5.2h-5.6v12.7h-6.7v-12.7H63z"/><path id="path28" class="st1" d="M122.1 174.2v-17.9c2 0 3.9-.1 5.9 0 2.2 2.3 4 4.9 6 7.3 0-2.4 0-4.9-.1-7.3h6v17.9h-5.8l-6-7.5v7.5h-6z"/><path id="path30" class="st1" d="M151.9 156.3h6.1c2 2.4 3.9 4.9 5.9 7.3v-7.3h5.9v17.9h-5.9c-2.1-2.4-3.9-4.9-5.9-7.3-.1 2.4 0 4.9 0 7.3h-6.1v-17.9z"/><path id="path32" class="st1" d="M172.3 156.3h15.6v5.2h-9.6v1.5h8.2v4.5h-8.2v1.8h9.6v4.9h-15.6v-17.9z"/><path id="path34" class="st1" d="M189.9 161.5v-5.2h17.9v5.2h-5.6v12.7h-6.7v-12.7h-5.6z"/><path id="path36" class="st1" d="M209.2 156.3h6c.6 2.5.8 5.1 1.5 7.7 1-2.4 2-4.7 2.9-7.1 1.1 2.4 1.9 4.9 3.1 7.2.2-2.6 1.1-5.1 1.3-7.7h6c-1 6-2.3 11.9-3.3 17.9h-4.9c-.9-1.5-1.4-3.2-2.2-4.8-.7 1.6-1.4 3.2-2 4.8h-4.9c-1.3-6-2.2-12-3.5-18z"/><path id="path38" class="st1" d="M251 174.2v-17.9h8.2c1.6 0 3.2-.1 4.7.3 2.3.9 4.2 3.2 4.1 5.8.2 2.4-1.4 4.6-3.4 5.7 1.1 2.1 2.4 4 3.5 6h-6.7c-.9-1.8-1.8-3.5-2.7-5.3h-1.9v5.3c-1.8.1-3.8.1-5.8.1z"/><path id="path40" class="st2" d="M32.7 161.3c.2 1.9 1 3.6 1.4 5.4H31c.8-1.8.9-3.7 1.7-5.4z"/><path id="path42" class="st2" d="M50.3 161.5c1.5 0 3-.1 4.4.1 1.1.7 1 2.4-.3 2.9-1.4.1-2.8 0-4.1 0v-3z"/><path id="path44" class="st2" d="M256.9 161.5c1.4 0 2.9-.1 4.3.1 1.1.4.9 1.7.5 2.6-1.5.5-3.2.2-4.8.3v-3z"/><path id="path46" class="st2" d="M89.5 162.3c1.7-1.1 4.1 0 4.6 1.9.4 1 0 2.1-.4 3.1-1.2 1.3-3.3 1.8-4.7.6-1.9-1.3-1.7-4.7.5-5.6z"/><path id="path48" class="st2" d="M108.8 162.8c1.6-1.7 4.9-.9 5.4 1.4.5 1.1-.1 2.1-.5 3.1-.9.7-1.8 1.4-3 1.2-2.7 0-4-3.9-1.9-5.7z"/><path id="path50" class="st2" d="M238.6 162.2c2-1.1 4.8.7 4.6 3 .2 2.5-3.1 4.4-5.1 2.8-2.2-1.2-1.9-4.9.5-5.8z"/><path id="path52" class="st1" d="M290.8 169.4c1.3 0 2.6-.1 3.9 0 .1.2.3.6.3.8-.6 0-1.1.1-1.7.1v4c-.3 0-.8 0-1.1.1v-4h-1.4v-1z"/><path id="path54" class="st1" d="M295.3 169.3c.5 0 1 0 1.5.1l.9 3.6c.3-1.2.5-2.5.9-3.7h1.4v4.9h-.9v-3.9c-.2 1.3-.5 2.6-.9 3.9h-1.1c-.2-1.3-.4-2.6-.8-3.8-.1 1.3-.1 2.6 0 3.9h-1v-5z"/></svg>
|
After Width: | Height: | Size: 4.3 KiB |
21
static/svgs/credits/fastly.svg
Normal file
|
@ -0,0 +1,21 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 22.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
viewBox="0 0 300 116.6" style="enable-background:new 0 0 300 116.6;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill:#D52F2F;}
|
||||
</style>
|
||||
<path class="st0" d="M204.2,11.9v78.3h23.5v-12h-7.8V0l-15.7,0L204.2,11.9L204.2,11.9z M0,78.2h8V40.5H0V30.1l8-1.3V18.3
|
||||
C8,5.5,10.8,0,27,0c3.5,0,7.7,0.5,11.3,1.2L36.2,14c-2.5-0.4-3.7-0.5-5.2-0.5c-5.7,0-7.2,0.6-7.2,6.2v9.1h11.9v11.7H23.7v37.8h7.9
|
||||
v12L0,90.2V78.2L0,78.2z M196.2,74.5c-2.5,0.5-4.6,0.5-6.2,0.5c-6.5,0.2-5.9-2-5.9-8.1V40.5h12.3V28.8h-12.3V0h-15.7v70.1
|
||||
c0,13.8,3.4,20.1,18.2,20.1c3.5,0,8.3-0.9,12-1.7L196.2,74.5L196.2,74.5z M148.7,40.5v-2.1c-4.8-0.9-9.5-0.9-12.1-0.9
|
||||
c-7.3,0-8.2,3.9-8.2,6c0,3,1,4.6,9,6.3c11.6,2.6,23.3,5.3,23.3,19.7c0,13.6-7,20.7-21.8,20.7c-9.9,0-19.5-2.1-26.8-4V74.5h11.9
|
||||
l0,2.1c5.1,1,10.5,0.9,13.3,0.9c7.8,0,9.1-4.2,9.1-6.4c0-3.1-2.2-4.6-9.6-6.1c-13.8-2.4-24.8-7.1-24.8-21.1
|
||||
c0-13.3,8.9-18.5,23.7-18.5c10,0,17.6,1.6,25,3.4v11.7L148.7,40.5L148.7,40.5z M68.9,74.4v-1.9H67v1.8c-8.4-0.5-15.2-7.3-15.7-15.7
|
||||
h1.9v-1.9h-1.9c0.5-8.4,7.2-15.1,15.6-15.6V43h1.9v-1.9c8.3,0.4,15,6.9,15.7,15.2v0.5h-1.9v1.9h1.9v0.5C83.9,67.5,77.2,74,68.9,74.4
|
||||
L68.9,74.4z M100.3,74.5l0-49H84.6v4.6c-3.3-2-6.9-3.4-10.7-4H74v-5.4h1.9v-4H60v4H62V26h0.1C47,28.8,35.6,42,35.6,57.8
|
||||
c0,17.9,14.5,32.4,32.4,32.4c5.9,0,11.6-1.6,16.7-4.6l2.8,4.6h16.6V74.5L100.3,74.5L100.3,74.5z M267.5,28.8H300v11.7h-7.8l-19.9,49
|
||||
c-5.7,13.8-15.1,26.7-29.4,26.7c-3.5,0-8.2-0.4-11.4-1.2l1.4-14.3c2.1,0.4,4.8,0.6,6.2,0.6c6.6,0,14.1-4.1,16.4-11.2l-20.2-49.7
|
||||
h-7.8V28.8h32.5v11.7h-7.8l11.4,28.1l11.4-28.1h-7.7L267.5,28.8L267.5,28.8z M76.2,50.8L75,49.6l-6.1,5.3c-0.3-0.1-0.6-0.2-1-0.2
|
||||
c-1.6,0-3,1.4-3,3.1c0,1.7,1.3,3.1,3,3.1s3-1.4,3-3.1c0-0.3,0-0.6-0.1-0.9L76.2,50.8"/>
|
||||
</svg>
|
After Width: | Height: | Size: 1.9 KiB |
1
static/svgs/credits/google.svg
Normal file
|
@ -0,0 +1 @@
|
|||
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" x="0" y="0" viewBox="0 0 300 99" xml:space="preserve"><style>.st0{fill:#ea4335}.st2{fill:#4285f4}</style><path class="st0" d="M128.4 52.1c0 14.2-11.1 24.7-24.8 24.7S78.9 66.3 78.9 52.1c0-14.3 11.1-24.7 24.8-24.7s24.7 10.4 24.7 24.7zm-10.9 0c0-8.9-6.4-15-13.9-15s-13.9 6.1-13.9 15c0 8.8 6.4 15 13.9 15s13.9-6.2 13.9-15z"/><path d="M181.8 52.1c0 14.2-11.1 24.7-24.8 24.7-13.6 0-24.8-10.5-24.8-24.7 0-14.3 11.1-24.7 24.8-24.7 13.7 0 24.8 10.4 24.8 24.7zm-10.8 0c0-8.9-6.4-15-13.9-15s-13.9 6.1-13.9 15c0 8.8 6.4 15 13.9 15s13.9-6.2 13.9-15z" fill="#fbbc05"/><path class="st2" d="M233 28.9v44.4c0 18.3-10.7 25.7-23.5 25.7-12 0-19.2-8-21.9-14.6l9.4-3.9c1.7 4 5.8 8.8 12.4 8.8 8.1 0 13.2-5 13.2-14.5v-3.6h-.4c-2.4 3-7.1 5.6-13 5.6-12.3 0-23.6-10.8-23.6-24.6 0-14 11.3-24.8 23.6-24.8 5.9 0 10.6 2.6 13 5.5h.4v-4H233zm-9.6 23.3c0-8.7-5.8-15.1-13.2-15.1-7.5 0-13.7 6.4-13.7 15.1 0 8.6 6.3 14.9 13.7 14.9 7.4 0 13.2-6.3 13.2-14.9z"/><path d="M249.9 2.8v72.5h-10.6V2.8h10.6z" fill="#34a853"/><path class="st0" d="M291.1 60.2l8.4 5.6c-2.7 4-9.3 11-20.6 11-14 0-24.5-10.9-24.5-24.7 0-14.7 10.6-24.7 23.3-24.7 12.8 0 19.1 10.2 21.1 15.7l1.1 2.8-33 13.7c2.5 5 6.5 7.5 12 7.5 5.6 0 9.4-2.7 12.2-6.9zm-25.9-8.9l22.1-9.2c-1.2-3.1-4.9-5.2-9.2-5.2-5.5 0-13.1 4.9-12.9 14.4z"/><path class="st2" d="M38.9 45.7V35.2h35.3c.3 1.8.5 4 .5 6.3 0 7.9-2.1 17.6-9.1 24.5-6.7 7-15.3 10.8-26.7 10.8C17.8 76.8 0 59.6 0 38.4S17.8 0 38.9 0c11.7 0 20 4.6 26.3 10.6L57.7 18c-4.5-4.2-10.6-7.5-18.9-7.5-15.4 0-27.5 12.5-27.5 27.9s12.1 27.9 27.5 27.9c10 0 15.7-4 19.3-7.7 3-3 4.9-7.2 5.7-13l-24.9.1z"/></svg>
|
After Width: | Height: | Size: 1.6 KiB |