Commit 9fd8baad7a495ad485bd5c4971ac1c520059ece5
1 parent
71f8ad95
Also use scroll effect for link in skills.
Showing
3 changed files
with
10 additions
and
4 deletions
... | ... | @@ -70,7 +70,9 @@ class Page extends Component { |
70 | 70 | <About /> |
71 | 71 | </div> |
72 | 72 | <div id="section2" ref="2" className="section"> |
73 | - <Skills /> | |
73 | + <Skills | |
74 | + onClick={(section) => this.handleShow.bind(this, section)} | |
75 | + /> | |
74 | 76 | </div> |
75 | 77 | <div id="section3" ref="3" className="section"> |
76 | 78 | <Vitae /> | ... | ... |
... | ... | @@ -35,9 +35,9 @@ class Skills extends Component { |
35 | 35 | </p> |
36 | 36 | <p> |
37 | 37 | If you are really interested in a skill profile look on one of |
38 | - my <a href="#section4">social profiles</a>. They might be | |
39 | - not bleeding edge, but they are a good starting point. If you | |
40 | - need to know more just send me a mail. | |
38 | + my <a onClick={this.props.onClick(4)}>social profiles</a>. | |
39 | + They might be not bleeding edge, but they are a good starting | |
40 | + point. If you need to know more just send me a mail. | |
41 | 41 | </p> |
42 | 42 | <p> |
43 | 43 | In summary, I have done much and I know a little of something | ... | ... |
Please
register
or
login
to post a comment