github.com/golang/dep@v0.5.4/website/pages/en/help.js (about)

     1  const React = require('react');
     2  
     3  const CompLibrary = require('../../core/CompLibrary.js');
     4  const Container = CompLibrary.Container;
     5  const GridBlock = CompLibrary.GridBlock;
     6  
     7  const siteConfig = require(process.cwd() + '/siteConfig.js');
     8  
     9  class Help extends React.Component {
    10    render() {
    11      const supportLinks = [
    12        {
    13          content:
    14            'Learn more using the [documentation on this site.](/test-site/docs/en/doc1.html)',
    15          title: 'Browse Docs',
    16        },
    17        {
    18          content: 'Ask questions about the documentation and project',
    19          title: 'Join the community',
    20        },
    21        {
    22          content: "Find out what's new with this project",
    23          title: 'Stay up to date',
    24        },
    25      ];
    26  
    27      return (
    28        <div className="docMainWrapper wrapper">
    29          <Container className="mainContainer documentContainer postContainer">
    30            <div className="post">
    31              <header className="postHeader">
    32                <h2>Need help?</h2>
    33              </header>
    34              <p>This project is maintained by a dedicated group of people.</p>
    35              <GridBlock contents={supportLinks} layout="threeColumn" />
    36            </div>
    37          </Container>
    38        </div>
    39      );
    40    }
    41  }
    42  
    43  module.exports = Help;