1
0
mirror of https://github.com/kamranahmedse/developer-roadmap.git synced 2025-10-02 03:46:42 +02:00
Files
developer-roadmap/components/hero-section/index.js
2019-10-19 21:24:16 +04:00

12 lines
408 B
JavaScript

import { HeroSectionWrap } from './style';
const HeroSection = () => (
<HeroSectionWrap>
<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>
</div>
</HeroSectionWrap>
);
export default HeroSection;