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

12 lines
408 B
JavaScript
Raw Normal View History

2019-10-19 21:24:16 +04:00
import { HeroSectionWrap } from './style';
2019-09-04 15:27:00 +04:00
const HeroSection = () => (
2019-10-19 21:24:16 +04:00
<HeroSectionWrap>
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>
2019-10-19 21:24:16 +04:00
</HeroSectionWrap>
2019-09-04 15:27:00 +04:00
);
export default HeroSection;