Update examples

This commit is contained in:
Frank Li 2017-07-11 10:57:36 -07:00
parent 330153fbf3
commit 6fbde4eead
3 changed files with 102 additions and 35 deletions

View file

@ -20,32 +20,30 @@ class Help extends React.Component {
const supportLinks = [
{
content:
"Learn more using the [documentation on this site.](/test-site/docs/en/doc1.html)\n",
"Learn more using the [documentation on this site.](/test-site/docs/en/doc1.html)",
title: "Browse Docs"
},
{
content: "Ask questions about the documentation and project\n",
content: "Ask questions about the documentation and project",
title: "Join the community"
},
{
content: "Find out what's new with this project\n",
content: "Find out what's new with this project",
title: "Stay up to date"
}
];
return (
<div>
<div className="docMainWrapper wrapper">
<Container className="mainContainer documentContainer postContainer">
<div className="post">
<header className="postHeader">
<h2>Need help?</h2>
</header>
<p>This project is maintained by a dedicated group of people.</p>
<GridBlock contents={supportLinks} layout="threeColumn" />
</div>
</Container>
</div>
<div className="docMainWrapper wrapper">
<Container className="mainContainer documentContainer postContainer">
<div className="post">
<header className="postHeader">
<h2>Need help?</h2>
</header>
<p>This project is maintained by a dedicated group of people.</p>
<GridBlock contents={supportLinks} layout="threeColumn" />
</div>
</Container>
</div>
);
}