Finished the animation on the skills and started on history/timeline

This commit is contained in:
2019-04-12 19:31:22 -04:00
parent d143e84a18
commit a644a83897
13 changed files with 193 additions and 45 deletions

View File

@@ -0,0 +1,27 @@
import React, {Component} from 'react';
import './history.css';
class History extends Component {
render() {
return (
<div className="container-fluid p-5"> {/* Check p-5 */}
<div className="timeline">
<div className="timeline-container timeline-left">
<div className="timeline-content">
<h2>2017</h2>
<p>Lorem ipsum..</p>
</div>
</div>
<div className="timeline-container timeline-right">
<div className="timeline-content">
<h2>2016</h2>
<p>Lorem ipsum..</p>
</div>
</div>
</div>
</div>
);
}
}
export default History;