Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add social media links #18

Merged
merged 2 commits into from
Nov 26, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions src/pages/blog/hero-section.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,18 @@ const HeroSection: React.FC = () => (
<p className="blog-header-description">
Read all the blog post which written by our students.
</p>
<a
href="https://medium.com/ms-club-of-sliit"
target="_blank"
rel="noopener noreferrer"
>
<button className="btn blog-primary-btn">
Follow Medium Page
<span>
<i className="far fa-thumbs-up mx-2"></i>
</span>
</button>
</a>
</div>

<div className="col-sm-12 col-md-5 col-lg-5">
Expand Down
12 changes: 12 additions & 0 deletions src/pages/event/hero-section.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,19 +9,31 @@ const HeroSection: React.FC = () => (
<p className="event-header-description">
Explore all the events organized by our students.
</p>
<a
href="https://www.facebook.com/msclubsliit"
target="_blank"
rel="noopener noreferrer"
>
<button className="btn event-primary-btn">
More Information on
<span>
<i className="fab fa-facebook-square fa-lg mx-2 mt-1"></i>
</span>
</button>
</a>

<a
href="https://www.youtube.com/channel/UCoSzsIgJZY52iiWu5YNI0Xg"
target="_blank"
rel="noopener noreferrer"
>
<button className="btn event-youtube-btn">
Subscribe on
<span>
<i className="fab fa-youtube fa-lg mx-2 mt-1"></i>
</span>
</button>
</a>
</div>

<div className="col-sm-12 col-md-5 col-lg-5">
Expand Down
25 changes: 18 additions & 7 deletions src/pages/home/hero-section.tsx
Original file line number Diff line number Diff line change
@@ -1,24 +1,35 @@
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-6 col-lg-6">
<h1 className="home-header-title">MS CLUB OF SLIIT</h1>
<p className="home-header-description">A volunteer-driven student community aiming to bridge the skill gap between an Undergraduate and an Industry Professional.</p>
<button className="btn home-primary-btn">
Join Now
</button>
<p className="home-header-description">
A volunteer-driven student community aiming to bridge the skill gap
between an Undergraduate and an Industry Professional.
</p>
<a
href="https://forms.office.com/r/xLw6LFrmJV"
target="_blank"
rel="noopener noreferrer"
>
<button className="btn home-primary-btn">Join Now</button>
</a>
</div>

<div className="col-sm-12 col-md-6 col-lg-6">
<div className="d-felx justify-content-center">
<img src="/assets/home_header.png" alt="home header" className="home-header-img" />
<img
src="/assets/home_header.png"
alt="home header"
className="home-header-img"
/>
</div>
</div>
</div>
</div>
);

export default HeroSection;
export default HeroSection;