Files
developer-roadmap/components/hero-section/index.js

12 lines
389 B
JavaScript
Raw Normal View History

2019-09-04 15:27:00 +04:00
import './style.scss';
const HeroSection = () => (
<div className='hero-section'>
2019-09-07 15:26:35 +04:00
<div className="container">
<h1>Developer Roadmaps</h1>
<p>Community driven roadmaps, articles and resources for developers. <a href="#">Sign up</a> to share your journey, write guides, track your skillset and get your work reviewed</p>
2019-09-04 15:27:00 +04:00
</div>
</div>
);
export default HeroSection;