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

13 lines
457 B
JavaScript
Raw Normal View History

2019-11-01 03:07:46 +04:00
import Link from 'next/link';
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>
2019-11-01 03:07:46 +04:00
<p>Community driven roadmaps, articles and resources for developers. <Link href="/signup"><a>Sign up</a></Link> 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;