Skip to content

Commit 7be295c

Browse files
committed
update home page
1 parent 79545bf commit 7be295c

File tree

3 files changed

+16
-1
lines changed

3 files changed

+16
-1
lines changed

common/css/base/_styles.scss

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
html, body {
22
height: 100%;
33
font-family: 'Open Sans', sans-serif;
4+
5+
p {
6+
font-size: 16px;
7+
line-height: 24px;
8+
}
49
}
510

611
body {

common/js/containers/Home/index.js

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import React, { Component } from 'react';
2+
import { Link } from 'react-router-dom';
23
import { Helmet } from 'react-helmet';
34
import css from './index.scss';
45

@@ -10,6 +11,15 @@ export default class HomeContainer extends Component {
1011
<title>Home</title>
1112
</Helmet>
1213
<h1>It Works!</h1>
14+
<p>
15+
You've successfully started up your first universally rendered react
16+
and redux app.<br />
17+
Hint: Try View Source on this page to see that it was
18+
rendered on the server as well.
19+
</p>
20+
<p>
21+
Check out the <Link to='/todos'>todos list</Link>.
22+
</p>
1323
</div>
1424
);
1525
}

common/js/containers/Home/index.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
.home {
22
h1 {
3-
font-size: 50px;
3+
font-size: 30px;
44
}
55
}

0 commit comments

Comments
 (0)