blob: a7f669f98146747f9a66a8f605b6166f341d3567 [file] [log] [blame]
/**
* 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 CompLibrary = require('../../core/CompLibrary.js');
const Container = CompLibrary.Container;
const GridBlock = CompLibrary.GridBlock;
function Help(props) {
const {config: siteConfig, language = ''} = props;
const {baseUrl, docsUrl} = siteConfig;
const docsPart = `${docsUrl ? `${docsUrl}/` : ''}`;
const langPart = `${language ? `${language}/` : ''}`;
const docUrl = doc => `${baseUrl}${docsPart}${langPart}${doc}`;
const supportLinks = [
{
content: `Learn more about the [license.](http://www.apache.org/licenses/)`,
title: 'Apache License',
},
{
content: 'Learn more about our [sponsors.](http://www.apache.org/foundation/thanks.html)',
title: 'Join the community',
},
{
content: "Learn more about how to be an Apache [sponsor.](http://www.apache.org/licenses/)",
title: 'Sponsorship',
},
{
content: `Read through our [bylaws.](${docUrl('bylaws')})`,
title: 'Bylaws',
},
];
return (
<div className="docMainWrapper wrapper">
<Container className="mainContainer documentContainer postContainer">
<div className="post">
<header className="postHeader">
<h1>Need help?</h1>
</header>
<p>This project is maintained by a dedicated group of people.</p>
<GridBlock contents={supportLinks} layout="threeColumn" />
</div>
</Container>
</div>
);
}
module.exports = Help;