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

Footer icons #707

Merged
merged 5 commits into from
Aug 8, 2024
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
3 changes: 2 additions & 1 deletion src/Components/Footer/Footer.css
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,8 @@
}

.subscription-message {
color: #28a745; /* Green color for success message */
font-weight:600;
color: #ffff00;
margin-top: 10px; /* Space above the message */
}

Expand Down
18 changes: 10 additions & 8 deletions src/Components/Footer/Footer.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ import { useEffect, useState } from "react";
import "./Footer.css";
import logo from "../../assets/logo2.png";
import { FaGithub, FaLinkedin, FaFacebook, FaTwitter, FaInstagram } from "react-icons/fa";
import twitterIcon from '../../assets/twitter.png';
import { NavLink, useNavigate } from "react-router-dom";
import { scroller } from "react-scroll";
import Visitors from "../Visitors";
Expand Down Expand Up @@ -159,21 +160,22 @@ const Footer = () => {
</div>
<div className="footer-2">
<p className="footer-section-title">Let&rsquo;s Connect</p>

<div className="footer-icons footer-icons-md">
<a href="https://linkedin.com/yourpage" target="_blank" rel="noreferrer">
<FaLinkedin style={{ fontSize: "25px" }} />
<FaLinkedin style={{ fontSize: "25px"}} />
</a>
<a href="https://github.com/Priyaaa1/StartConnect-Hub" className="github" target="_blank" rel="noreferrer">
<FaGithub />
<a href="https://github.com/yourpage" target="_blank" rel="noreferrer">
<FaGithub style={{ fontSize: "25px"}} />
</a>
<a href="https://facebook.com/yourpage" target="_blank" rel="noreferrer">
<FaFacebook style={{ fontSize: "25px" }} />
</a>
<a href="https://twitter.com/yourpage" target="_blank" rel="noreferrer">
<FaTwitter style={{ fontSize: "25px" }} />
<FaFacebook style={{ fontSize: "25px"}} />
</a>
<a href="https://x.com/yourpage" target="_blank" rel="noreferrer">
<img src={twitterIcon} alt="Twitter" style={{ width: "20px", height: "20px"}} />
</a>
<a href="https://instagram.com/yourpage" target="_blank" rel="noreferrer">
<FaInstagram style={{ fontSize: "25px" }} />
<FaInstagram style={{ fontSize: "25px"}} />
</a>
</div>
<SubscriptionForm />
Expand Down
Binary file added src/assets/twitter.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.