Skip to content

Commit

Permalink
refactor: add gallery footer link
Browse files Browse the repository at this point in the history
  • Loading branch information
sonylomo committed Jan 24, 2024
1 parent f82d8c6 commit bd4f643
Show file tree
Hide file tree
Showing 2 changed files with 58 additions and 35 deletions.
92 changes: 58 additions & 34 deletions src/APP/components/Footer2.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ import {
twitter,
spotify,
youtube,
instagram,
facebook,
} from "../../assets/images/socials";

function Footer2() {
Expand All @@ -16,8 +18,8 @@ function Footer2() {
return (
<footer className="bg-[#252533] text-white ">
<div className="md:p-12 py-8 px-4 relative max-w-[1440px] mx-auto">
<div className="flex lg:flex-row flex-col md:gap-16 gap-8 ">
<div className="flex-3 flex flex-col lg:items-center items-start">
<div className="flex lg:flex-row flex-col md:gap-16 gap-8">
<div className="flex-3 flex flex-col sm:items-start items-center">
{/* logo */}
<img
src={logo}
Expand All @@ -26,38 +28,55 @@ function Footer2() {
/>

{/* socials */}
<div className="flex items-center md:gap-5 gap-3 py-4">
<a
href="https://x.com/SpaceYaTech"
target="_blank"
rel="noopener noreferrer"
>
<img src={twitter} alt="twitter" className="w-7 h-7" />
</a>

<a
href="https://linkedin.com/company/spaceyatech"
target="_blank"
rel="noopener noreferrer"
>
<img src={linkedin} alt="linkedin" className="w-7 h-7" />
</a>

<a
href="https://www.youtube.com/@spaceyatech"
target="_blank"
rel="noopener noreferrer"
>
<img src={youtube} alt="youtube" className="w-7 h-7" />
</a>

<a
href="https://open.spotify.com/show/4nUYzhacDAw1v9ClqPY89n"
target="_blank"
rel="noopener noreferrer"
>
<img src={spotify} alt="spotify" className="w-7 h-7" />
</a>
<div className="flex flex-col items-center">
<div className="flex items-center md:gap-5 gap-3 py-4">
<a
href="https://www.facebook.com/spaceyatech"
target="_blank"
rel="noopener noreferrer"
>
<img src={facebook} alt="facebook" className="w-7 h-7" />
</a>
<a
href="https://www.instagram.com/spaceyatech/"
target="_blank"
rel="noopener noreferrer"
>
<img src={instagram} alt="instagram" className="w-7 h-7" />
</a>
<a
href="https://x.com/SpaceYaTech"
target="_blank"
rel="noopener noreferrer"
>
<img src={twitter} alt="twitter" className="w-7 h-7" />
</a>

<a
href="https://linkedin.com/company/spaceyatech"
target="_blank"
rel="noopener noreferrer"
>
<img src={linkedin} alt="linkedin" className="w-7 h-7" />
</a>
</div>
<div className="flex items-center md:gap-5 gap-3">
<a
href="https://www.youtube.com/@spaceyatech"
target="_blank"
rel="noopener noreferrer"
>
<img src={youtube} alt="youtube" className="w-7 h-7" />
</a>

<a
href="https://open.spotify.com/show/4nUYzhacDAw1v9ClqPY89n"
target="_blank"
rel="noopener noreferrer"
>
<img src={spotify} alt="spotify" className="w-7 h-7" />
</a>
</div>
</div>
</div>

Expand Down Expand Up @@ -103,6 +122,11 @@ function Footer2() {
Mentorship
</a>
</li>
<li>
<a href="/gallery" className="hover:underline text-white">
Gallery
</a>
</li>
</ul>
</div>

Expand Down
1 change: 0 additions & 1 deletion src/APP/pages/aboutUs/sections/PartnerCTA.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,6 @@ function PartnerCTA() {
<p>
<a
href="/src/assets/reports/spaceyatech-internship-program.pdf"
download="SpaceYaTech_Internship_Program_2023.pdf"
target="_blank"
rel="noopener noreferrer"
className="text-primary text-sm sm:text-base"
Expand Down

0 comments on commit bd4f643

Please sign in to comment.