Skip to content

Commit

Permalink
Footer Completed Functionality left (#13)
Browse files Browse the repository at this point in the history
* Footer Completed Functionality left

* contributor list changed
  • Loading branch information
rajdips834 authored Oct 25, 2023
1 parent 9176e28 commit d427f04
Show file tree
Hide file tree
Showing 5 changed files with 75 additions and 4 deletions.
3 changes: 2 additions & 1 deletion CONTRIBUTORS
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
Niraj Modi <modiniraj1034@gmail.com>
Jayanta Pandit <jay.dnb@outlook.in>
Jayanta Pandit <jay.dnb@outlook.in>
Rajdip Sinha <rajdips834@gmail.com>
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 @@ -5,6 +5,7 @@
"dependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^4.11.0",
"web-vitals": "^2.1.4"
},
"repository": {
Expand Down
10 changes: 7 additions & 3 deletions src/App.jsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
import Footer from "./components/footer/Footer";

function App() {
return (
<div className='bg-red-600'>GDSC</div>
)
<div>
<Footer />
</div>
);
}

export default App
export default App;
56 changes: 56 additions & 0 deletions src/components/footer/Footer.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
import React from "react";
import { FaLinkedin, FaInstagram, FaTwitter } from "react-icons/fa";

export default function Footer() {
return (
<div className="relative text-slate-600 bg-slate-950">
<div className="flex flex-col md:flex-row justify-between ml-4 md:ml-[10rem] mr-4 md:mr-[10rem]">
<div className="mb-4 text-center md:text-left md:mb-0">
<p className="text-[#6D6D6D] text-base not-italic font-extrabold leading-[29.2px] uppercase">
Dive into the new world of in-house music
</p>
<p className="w-full md:w-[20vw] pt-4 text-[#6D6D6D] text-lg not-italic font-medium leading-[normal]">
Lorem ipsum dolor sit amet consectetur. At porttitor ut felis nisl
ultrices sed sit. Cras nibh quis et diam justo in. Sollicitudin enim
tincidunt eros mauris senectus neque.
</p>
</div>
<div className="mb-4 text-center md:text-left md:mb-0">
<p className="text-[#6D6D6D] text-base not-italic font-extrabold leading-[29.2px] uppercase">
VISIT
</p>
<ul className="w-full md:w-[20vw] text-[#6D6D6D] text-[32px] not-italic font-medium leading-[30.214px] tracking-[-1px]">
<li>
<a href="#">About</a>
</li>
<li>
<a href="#">Events</a>
</li>
<li>
<a href="#">Get in touch</a>
</li>
</ul>
</div>
<div className="text-center md:text-left">
<p className="text-[#6D6D6D] text-base not-italic font-extrabold leading-[29.2px] uppercase">
SOCIALS
</p>
<ul className="flex justify-center gap-3 md:justify-start">
<li>
<FaInstagram size="2em" />
</li>
<li>
<FaTwitter size="2em" />
</li>
<li>
<FaLinkedin size="2em" />
</li>
</ul>
</div>
</div>
<div className="text-center md:text-left text-[15vw] text-[#6D6D6D] relative md:pl-[7rem] font-medium font-family: Poppins">
GDSC AEC
</div>
</div>
);
}

0 comments on commit d427f04

Please sign in to comment.