-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #33 from ms-club-sliit/feature/bug-applicationform
Fixed the bug in Application Form
- Loading branch information
Showing
5 changed files
with
10,383 additions
and
10,541 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,63 @@ | ||
import React from 'react'; | ||
import React from "react"; | ||
|
||
const HeroSection: React.FC = () => ( | ||
<div className="container mb-5"> | ||
<div className="hero-section-bg" /> | ||
|
||
<div className="row"> | ||
<div className="col-sm-12 col-md-7 col-lg-7"> | ||
<h1 className="contact-us-header-title">Join with Us</h1> | ||
<p className="contact-us-header-description"> | ||
Fill your application form today | ||
</p> | ||
<div className="row"> | ||
<div className="col-sm-12 col-md-7 col-lg-7"> | ||
<div className="d-flex justify-content-start mb-2"> | ||
<i className="fab fa-facebook fa-2x social-icon" /> | ||
<span className="social-facebook-link"> | ||
facebook.com/msclubsliit | ||
</span> | ||
</div> | ||
<div className="d-flex justify-content-start mb-2"> | ||
<i className="fab fa-instagram fa-2x social-icon" /> | ||
<span className="social-instagram-link"> | ||
instagram.com/msclub.sliit | ||
</span> | ||
</div> | ||
<div className="d-flex justify-content-start mb-2"> | ||
<i className="fab fa-linkedin fa-2x social-icon" /> | ||
<span className="social-linkedin-link"> | ||
linkedin.com/msclubsliit | ||
</span> | ||
</div> | ||
<div className="d-flex justify-content-start mb-2"> | ||
<i | ||
className="fab fa-youtube fa-2x social-icon" | ||
style={{ color: "#FF0000" }} | ||
/> | ||
<span className="social-youtube-link"> | ||
youtube.com/msclubsliit | ||
</span> | ||
</div> | ||
<div className="d-flex justify-content-start mb-2"> | ||
<i className="fab fa-github fa-2x social-icon" /> | ||
<span className="social-github-link">github.com/msclubsliit</span> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
|
||
<div className="col-sm-12 col-md-5 col-lg-5"> | ||
<div className="d-felx justify-content-center"> | ||
<img src="/assets/join_us_header.svg" alt="home header" className="contact-us-header-img" /> | ||
<img | ||
src="/assets/join_us_header.svg" | ||
alt="home header" | ||
className="contact-us-header-img" | ||
/> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
); | ||
|
||
export default HeroSection; | ||
export default HeroSection; |
Oops, something went wrong.