mirror of
https://github.com/kamranahmedse/developer-roadmap.git
synced 2025-10-02 03:46:42 +02:00
12 lines
408 B
JavaScript
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; |