Commit 9fd8baad7a495ad485bd5c4971ac1c520059ece5

Authored by Georg Hopp
1 parent 71f8ad95

Also use scroll effect for link in skills.

@@ -70,7 +70,9 @@ class Page extends Component { @@ -70,7 +70,9 @@ class Page extends Component {
70 <About /> 70 <About />
71 </div> 71 </div>
72 <div id="section2" ref="2" className="section"> 72 <div id="section2" ref="2" className="section">
73 - <Skills /> 73 + <Skills
  74 + onClick={(section) => this.handleShow.bind(this, section)}
  75 + />
74 </div> 76 </div>
75 <div id="section3" ref="3" className="section"> 77 <div id="section3" ref="3" className="section">
76 <Vitae /> 78 <Vitae />
@@ -8,3 +8,7 @@ @@ -8,3 +8,7 @@
8 transform: translate(-50%, 0); 8 transform: translate(-50%, 0);
9 position: relative; 9 position: relative;
10 } 10 }
  11 +
  12 +#skills a {
  13 + cursor: pointer;
  14 +}
@@ -35,9 +35,9 @@ class Skills extends Component { @@ -35,9 +35,9 @@ class Skills extends Component {
35 </p> 35 </p>
36 <p> 36 <p>
37 If you are really interested in a skill profile look on one of 37 If you are really interested in a skill profile look on one of
38 - my&nbsp;<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&nbsp;<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 </p> 41 </p>
42 <p> 42 <p>
43 In summary, I have done much and I know a little of something 43 In summary, I have done much and I know a little of something
Please register or login to post a comment