Skip to content

Commit b089c2a

Browse files
committed
change links
1 parent 5b04e54 commit b089c2a

File tree

6 files changed

+22
-20
lines changed

6 files changed

+22
-20
lines changed

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@
99
"version": "0.9.0",
1010
"repository": {
1111
"type": "git",
12-
"url": "https://github.com/erikras/react-redux-universal-hot-example"
12+
"url": "https://github.com/bertho-zero/react-redux-universal-hot-example"
1313
},
14-
"homepage": "https://github.com/erikras/react-redux-universal-hot-example",
14+
"homepage": "https://github.com/bertho-zero/react-redux-universal-hot-example",
1515
"keywords": [
1616
"react",
1717
"isomorphic",

src/components/GithubButton/GithubButton.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ const GithubButton = props => {
1414
title={`github-button-${user}-${repo}-${type}`}
1515
src={src}
1616
frameBorder="0"
17-
allowTransparency="true"
1817
scrolling="0"
1918
width={width}
2019
height={height}

src/containers/About/About.js

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,12 +24,16 @@ export default class About extends Component {
2424
<Helmet title="About Us" />
2525

2626
<p>
27-
This project was originally created by Erik Rasmussen (
27+
This project is maintained by Kévin Berthommier (
28+
<a href="https://github.com/bertho-zero" target="_blank" rel="noopener noreferrer">
29+
@bertho-zero
30+
</a>) and was originally created by Erik Rasmussen (
2831
<a href="https://twitter.com/erikras" target="_blank" rel="noopener noreferrer">
2932
@erikras
30-
</a>), but has since seen many contributions from the open source community. Thank you to{' '}
33+
</a>),<br />
34+
but has since seen many contributions from the open source community. Thank you to{' '}
3135
<a
32-
href="https://github.com/erikras/react-redux-universal-hot-example/graphs/contributors"
36+
href="https://github.com/bertho-zero/react-redux-universal-hot-example/graphs/contributors"
3337
target="_blank"
3438
rel="noopener noreferrer"
3539
>

src/containers/App/App.js

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ export default class App extends Component {
145145
<NavItem
146146
target="_blank"
147147
title="View on Github"
148-
href="https://github.com/erikras/react-redux-universal-hot-example"
148+
href="https://github.com/bertho-zero/react-redux-universal-hot-example"
149149
>
150150
<i className="fa fa-github" />
151151
</NavItem>
@@ -171,17 +171,12 @@ export default class App extends Component {
171171
<div className="well text-center">
172172
Have questions? Ask for help{' '}
173173
<a
174-
href="https://github.com/erikras/react-redux-universal-hot-example/issues"
174+
href="https://github.com/bertho-zero/react-redux-universal-hot-example/issues"
175175
target="_blank"
176176
rel="noopener noreferrer"
177177
>
178178
on Github
179-
</a>{' '}
180-
or in the{' '}
181-
<a href="https://discord.gg/0ZcbPKXt5bZZb1Ko" target="_blank" rel="noopener noreferrer">
182-
#react-redux-universal
183-
</a>{' '}
184-
Discord channel.
179+
</a>.
185180
</div>
186181
</div>
187182
);

src/containers/Home/Home.js

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ export default class Home extends Component {
3636
<p>
3737
<a
3838
className={styles.github}
39-
href="https://github.com/erikras/react-redux-universal-hot-example"
39+
href="https://github.com/bertho-zero/react-redux-universal-hot-example"
4040
target="_blank"
4141
rel="noopener noreferrer"
4242
>
@@ -45,7 +45,7 @@ export default class Home extends Component {
4545
</p>
4646
{online && (
4747
<GithubButton
48-
user="erikras"
48+
user="bertho-zero"
4949
repo="react-redux-universal-hot-example"
5050
type="star"
5151
width={160}
@@ -56,7 +56,7 @@ export default class Home extends Component {
5656
)}
5757
{online && (
5858
<GithubButton
59-
user="erikras"
59+
user="bertho-zero"
6060
repo="react-redux-universal-hot-example"
6161
type="fork"
6262
width={160}
@@ -67,9 +67,13 @@ export default class Home extends Component {
6767
)}
6868

6969
<p className={styles.humility}>
70-
Created and maintained by{' '}
70+
Created by{' '}
7171
<a href="https://twitter.com/erikras" target="_blank" rel="noopener noreferrer">
7272
@erikras
73+
</a>{' '}
74+
and maintained by{' '}
75+
<a href="https://github.com/bertho-zero" target="_blank" rel="noopener noreferrer">
76+
@bertho-zero
7377
</a>.
7478
</p>
7579
</div>

src/containers/Widgets/Widgets.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,10 +59,10 @@ export default class Widgets extends Component {
5959
</h1>
6060
<Helmet title="Widgets" />
6161
<p>
62-
If you hit 'Reload Widgets' on your browser, the data loading will take place on the server before the page is
62+
If you hit 'Refresh' on your browser, the data loading will take place on the browser after the page is
6363
returned. If you navigated here from another page, the data was fetched from the client after the route
6464
transition. This uses the decorator method <code>@provideHooks</code> with the <code>defer</code> key. To
65-
block a route transition until some data is loaded, use the <code>defer</code> key. To always render before
65+
block a route transition until some data is loaded, use the <code>fetch</code> key. To always render before
6666
loading data, even on the server, use <code>componentWillMount</code>.
6767
</p>
6868
<p>This widgets are stored in your session, so feel free to edit it and refresh.</p>

0 commit comments

Comments
 (0)