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

🔧✨ Fixed Footer Section: Enhanced Social Icon UI/UX #353

Merged
merged 1 commit into from
Jan 19, 2025
Merged
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
25 changes: 18 additions & 7 deletions src/componets/footer.js
Original file line number Diff line number Diff line change
Expand Up @@ -152,29 +152,38 @@ function Footer() {
<FooterContent>
{/* Social Icons */}
<SocialIcons>

<SocialIcon
href="https://facebook.com"
target="_blank"
rel="noopener noreferrer"
whileHover={{ scale: 1.2 }}
aria-label="Facebook"
>
aria-label="Facebook">
<i className="fab fa-facebook-f"></i> {/* Facebook icon */}
</SocialIcon>

<SocialIcon
href="https://linkedin.com"
target="_blank"
rel="noopener noreferrer"
whileHover={{ scale: 1.2 }}
aria-label="LinkedIn"
role="link"
>
role="link">
<i className="fab fa-linkedin-in"></i> {/* LinkedIn icon */}
</SocialIcon>

<i className="fab fa-twitter"></i> {/* Updated Twitter icon */}
<SocialIcon
href="https://linkedin.com"
target="_blank"
rel="noopener noreferrer"
whileHover={{ scale: 1.2 }}
aria-label="LinkedIn"
role="link">
<i className="fab fa-twitter"></i> {/* Twitter icon */}
</SocialIcon>

<i className="fab fa-linkedin-in"></i> {/* LinkedIn icon */}


</SocialIcon>
<SocialIcon
href="https://instagram.com"
target="_blank"
Expand All @@ -184,6 +193,7 @@ function Footer() {
>
<i className="fab fa-instagram"></i> {/* Instagram icon */}
</SocialIcon>

<SocialIcon
href="https://github.com/Mujtabaa07/coffeeShop"
target="_blank"
Expand All @@ -194,6 +204,7 @@ function Footer() {
>
<i className="fab fa-github"></i> {/* GitHub icon */}
</SocialIcon>

</SocialIcons>

{/* Divider */}
Expand Down
Loading