Files
developer-roadmap/components/swim-lane/index.js

30 lines
891 B
JavaScript
Raw Normal View History

2019-09-07 15:26:35 +04:00
import './style.scss';
const SwimLane = (props) => (
<>
2019-09-07 15:56:04 +04:00
<div className="lane-head">
<h3>Featured Roadmaps</h3>
<p>List of roadmaps mostly visited by the community. There are <a href="#">more roadmaps also</a>.</p>
</div>
2019-09-07 15:26:35 +04:00
<div className={ `swim-lane ${props.className}` }>
<a className="lane-item" href='#'>
<h4>Frontend Developer</h4>
<p>Step by step guide to becoming a modern frontend developer in 2019</p>
</a>
<a className="lane-item" href='#'>
<h4>Backend Developer</h4>
<p>Step by step guide to becoming a modern backend developer in 2019</p>
</a>
<a className="lane-item" href='#'>
<h4>DevOps Roadmap</h4>
<p>Step by step guide to become an SRE or for any operations role</p>
</a>
</div>
</>
);
SwimLane.defaultProps = {
className: '',
};
export default SwimLane;