-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
9176e28
commit 040fce9
Showing
4 changed files
with
73 additions
and
3 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> | ||
); | ||
} |