Skip to content

Commit a536b11

Browse files
committed
Follow up doc site updates
1 parent c77a8fd commit a536b11

File tree

4 files changed

+11
-15
lines changed

4 files changed

+11
-15
lines changed

website/core/Footer.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ class Footer extends React.Component {
3434
</a>
3535
<div>
3636
<h5>Docs</h5>
37-
<a href={this.docUrl("getting-started")}>Introduction</a>
37+
<a href={this.docUrl("introduction/quick-start")}>Introduction</a>
3838
<a
3939
href={this.docUrl(
4040
"using-react-redux/connect-extracting-data-with-mapStateToProps"

website/pages/en/index.js

Lines changed: 8 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -51,9 +51,10 @@ const ProjectTitle = () => (
5151
<h2 className="projectTitle">
5252
{siteConfig.title}
5353
<small>
54-
<MarkdownBlock>
55-
Official React bindings for [Redux](https://github.com/reduxjs/redux)
56-
</MarkdownBlock></small>
54+
<MarkdownBlock>
55+
Official React bindings for [Redux](https://github.com/reduxjs/redux)
56+
</MarkdownBlock>
57+
</small>
5758
</h2>
5859
);
5960

@@ -73,8 +74,8 @@ class HomeSplash extends React.Component {
7374
<div className="inner">
7475
<ProjectTitle />
7576
<PromoSection>
76-
<Button href={docUrl("getting-started", language)}>
77-
Get started
77+
<Button href={docUrl("introduction/quick-start", language)}>
78+
Quick Start
7879
</Button>
7980
<Button href="https://github.com/reduxjs/react-redux">
8081
Github
@@ -92,13 +93,8 @@ const Installation = () => (
9293
style={{ textAlign: "center" }}
9394
>
9495
<h2>Installation</h2>
95-
<MarkdownBlock>
96-
React Redux requires **React 0.14 or later.**
97-
</MarkdownBlock>
98-
<MarkdownBlock>
99-
``` npm install --save
100-
react-redux ```
101-
</MarkdownBlock>
96+
<MarkdownBlock>React Redux requires **React 0.14 or later.**</MarkdownBlock>
97+
<MarkdownBlock>``` npm install --save react-redux ```</MarkdownBlock>
10298
</div>
10399
);
104100

website/sidebars.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"docs": {
3-
"Introduction": ["getting-started"],
3+
"Introduction": ["introduction/quick-start", "introduction/basic-tutorial"],
44
"Using React-Redux": [
55
"using-react-redux/connect-extracting-data-with-mapStateToProps"
66
],

website/siteConfig.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ const siteConfig = {
2626

2727
// For no header links in the top nav bar -> headerLinks: [],
2828
headerLinks: [
29-
{ doc: "getting-started", label: "Getting Started" },
29+
{ doc: "introduction/quick-start", label: "Quick Start" },
3030
{
3131
doc: "using-react-redux/connect-extracting-data-with-mapStateToProps",
3232
label: "Using React-Redux"

0 commit comments

Comments
 (0)