Skip to content

Commit

Permalink
updated footer
Browse files Browse the repository at this point in the history
  • Loading branch information
c4dr-me committed Sep 28, 2024
1 parent 9ecda68 commit 5e76981
Showing 1 changed file with 41 additions and 14 deletions.
55 changes: 41 additions & 14 deletions components/footer.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,20 +2,47 @@ import React from "react";

const footer = () => {
return (
<footer className='w-full md:h-96 footer bg-[#365372] flex flex-col justify-evenly'>
<img className='mx-auto pt-6 md:pt-12 w-[80px] md:w-[120px]' src="https://msit.in/static/img/msit.png" alt="" />
<h1 href="https://msit.in/" className='cursor-pointer text-white font-[600] text-center pt-4 text-lg md:text-2xl'>msit.in</h1>
<div className='w-[60%] mx-auto h-[0px] border-dashed border-blue-900 border-[1px] mt-2 md:mt-4'></div>
<h1 className='text-white mt-2 md:mt-4 text-center font-[600] mx-[5%]'><span className='text-[#ecb227]'>Copyright © 2024</span> National Conference on Recent Trends in Climate Change, Energy and
Sustainability (NCRTCES) <span className='text-[#ecb227]'>All Rights Reserved.</span></h1>
<div className='flex justify-center text-xl md:text-3xl py-3 md:mt-4 '>
<i href="https://m.facebook.com/340860243221497/" className="cursor-pointer fa-brands fa-facebook text-white"></i>
<i href="https://www.instagram.com/invites/contact/?i=1db3ohssgsiqo&utm_content=5yz2oup" className="cursor-pointer fa-brands fa-instagram ml-3 text-white"></i>
<i href="https://www.linkedin.com/school/maharaja-surajmal-institute-of-technology-msitnewdelhi/" className="cursor-pointer fa-brands fa-linkedin ml-3 text-white"></i>
<i href="https://twitter.com/msitnewdelhi?t=G_i_U0kRl1RIF6_Yt-w3sQ&s=08" className="cursor-pointer fa-brands fa-square-twitter ml-3 text-white "></i>

</div>
</footer>
<footer className="w-full md:h-96 footer bg-gradient-to-t from-blue-500 to-blue-400 flex flex-col justify-evenly">
<img
className="mx-auto pt-6 md:pt-12 w-[80px] md:w-[120px]"
src="https://msit.in/static/img/msit.png"
alt=""
/>
<h1
href="https://msit.in/"
className="cursor-pointer text-white font-[600] text-center pt-4 text-lg md:text-2xl"
>
msit.in
</h1>
<div className="w-[75%] mx-auto h-[0px] border-white border-[1px] mt-2 md:mt-4"></div>
<h1 className="text-white mt-2 md:mt-4 text-center font-[600] mx-[5%]">
<span className=" font-bold">
National Conference on Recent Trends in Climate Change, Energy and
Sustainability (NCRTCES) 2024
</span>{" "}
<br />
<span className="text-[#FFD700]">Copyright © 2024 |</span>&nbsp;
<span className="text-[#FFD700]">All Rights Reserved.</span>
</h1>
<div className="flex justify-center text-xl md:text-3xl py-4 md:mt-4 mb-4">
<a
href="https://m.facebook.com/340860243221497/"
className="cursor-pointer fa-brands fa-facebook text-white transform transition duration-300 hover:scale-110"
></a>
<a
href="https://www.instagram.com/invites/contact/?i=1db3ohssgsiqo&utm_content=5yz2oup"
className="cursor-pointer fa-brands fa-instagram ml-3 text-white transform transition duration-300 hover:scale-110"
></a>
<a
href="https://www.linkedin.com/school/maharaja-surajmal-institute-of-technology-msitnewdelhi/"
className="cursor-pointer fa-brands fa-linkedin ml-3 text-white transform transition duration-300 hover:scale-110"
></a>
<a
href="https://twitter.com/msitnewdelhi?t=G_i_U0kRl1RIF6_Yt-w3sQ&s=08"
className="cursor-pointer fa-brands fa-square-twitter ml-3 text-white transform transition duration-300 hover:scale-110"
></a>
</div>
</footer>
);
};

Expand Down

0 comments on commit 5e76981

Please sign in to comment.