Skip to content

Commit

Permalink
footer icons updated
Browse files Browse the repository at this point in the history
  • Loading branch information
pradeeptosarkar committed Jul 23, 2024
1 parent 531fcf6 commit f11fbc4
Show file tree
Hide file tree
Showing 3 changed files with 57 additions and 38 deletions.
9 changes: 9 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
"react-bootstrap": "^2.9.0",
"react-countup": "^6.5.3",
"react-dom": "^18.2.0",
"react-icons": "^5.2.1",
"react-intersection-observer": "^9.5.2",
"react-responsive": "^9.0.2",
"react-router-dom": "^6.8.2",
Expand Down
85 changes: 47 additions & 38 deletions src/components/Footer/Footer.jsx
Original file line number Diff line number Diff line change
@@ -1,13 +1,15 @@
import { useState, useEffect } from "react";
import styled from "styled-components";
import {
Linkedin,
Instagram,
Github,
Twitter,
Mail,
Youtube,
} from "lucide-react";
FaLinkedin,
FaInstagram,
FaGithub,
FaTwitter,
FaEnvelope,
FaYoutube,
FaWhatsapp,
FaTelegram,
} from "react-icons/fa";

const Section = styled.footer`
padding: 1.2rem;
Expand Down Expand Up @@ -38,11 +40,9 @@ const ContentWrapper = styled.div`
const RightText = styled.div`
display: flex;
align-items: center;
p {
margin-right: 1rem;
width:
}
a {
Expand Down Expand Up @@ -118,35 +118,44 @@ const Footer = () => {
Team nameSpace
</a>
</CenterText>
<ContentWrapper>
<LeftText>© {year} The nameSpace Community and Organization</LeftText>
<RightText>
<p>Reach out to us via </p>
<a href="http://instagram.com/namespacecomm">
<Instagram size={24} />
</a>
&nbsp;
<a href="http://www.linkedin.com/company/namespacecomm/">
<Linkedin size={24} />
</a>
&nbsp;
<a href="https://www.youtube.com/@namespacecomm">
<Youtube size={24} />
</a>
&nbsp;
<a href="https://github.com/namespacecomm">
<Github size={24} />
</a>
&nbsp;
<a href="https://twitter.com/namespacecomm">
<Twitter size={24} />
</a>
&nbsp;
<a href="mailto:[email protected]">
<Mail size={24} />
</a>
</RightText>
</ContentWrapper>
<CenterText>
<p className="text-2xl">Reach out to us via </p>
<div className="flex items-center justify-center space-x-4 mt-2">
<a href="http://instagram.com/namespacecomm">
<FaInstagram size={24} />
</a>
&nbsp;
<a href="http://www.linkedin.com/company/namespacecomm/">
<FaLinkedin size={24} />
</a>
&nbsp;
<a href="https://www.youtube.com/@namespacecomm">
<FaYoutube size={24} />
</a>
&nbsp;
<a href="https://github.com/namespacecomm">
<FaGithub size={24} />
</a>
&nbsp;
<a href="https://twitter.com/namespacecomm">
<FaTwitter size={24} />
</a>
<a href="https://wa.me/your-whatsapp-number">
<FaWhatsapp size={24} />
</a>
&nbsp;
<a href="https://t.me/your-telegram-username">
<FaTelegram size={24} />
</a>
&nbsp;
<a href="mailto:[email protected]">
<FaEnvelope size={24} />
</a>
&nbsp;
</div>

</CenterText>
<CenterText>© {year} The nameSpace Community and Organization</CenterText>
<TrademarkText>
"HACKHAZARDS", "TechXcelerate", "TechTrek", "AlgoRumble", "TechRumble",
"Game of Codes", "nameSpace" and "The nameSpace Community" are the
Expand Down

0 comments on commit f11fbc4

Please sign in to comment.