Roadmap to becoming a developer in 2022
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
382 B

import './style.scss';
const HeroSection = () => (
<div className='hero-section'>
<h1>Roadmaps for Developers</h1>
<p>Community driven, roadmaps, articles and resources for developers</p>
<div className="register-form d-flex">
<input type="text" />
<a href="#" className="btn btn-primary">Register</a>
</div>
</div>
);
export default HeroSection;