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

14 lines
433 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-13 22:35:02 +04:00
<p>Community driven roadmaps, articles and resources for developers. <Link href="/signup"><a>Sign up</a></Link> for occasional updates on new roadmaps, updates and guides</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;