Add links in hero section

This commit is contained in:
Kamran Ahmed
2019-09-04 16:32:25 +04:00
parent 105df7a02a
commit 8cf49540f9
6 changed files with 89 additions and 14 deletions

View File

@@ -1,3 +1,4 @@
import { FontAwesomeIcon } from '@fortawesome/react-fontawesome';
import './style.scss';
const HeroSection = () => (
@@ -8,7 +9,8 @@ const HeroSection = () => (
<div className="register-form">
<input type="text" className='email-input' placeholder='Enter Email Address' />
<a href="#" className="btn btn-dark">Register</a>
<a href="#" className='icon-link'><FontAwesomeIcon icon={ ["fab", "github"] } /></a>
<a href="#" className='icon-link'><FontAwesomeIcon icon={ ["fab", "twitter"] } /></a>
</div>
</div>
);