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 updated #552

Merged
merged 1 commit into from
Jul 23, 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
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
Loading