Skip to content

Commit

Permalink
Fixed Footer's UI (#999)
Browse files Browse the repository at this point in the history
  • Loading branch information
Bhum-ika authored Oct 28, 2024
1 parent f755e16 commit df902bd
Showing 1 changed file with 19 additions and 16 deletions.
35 changes: 19 additions & 16 deletions webmasterlog/src/components/shared/Footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,9 @@ import Image from 'next/image';

const Footer = () => {
return (
<footer className="bg-[#191c24] mt-2 py-5 border-t-2 border-blue-400 flex flex-col md:flex-row gap-4 justify-evenly items-center text-center text-gray-400">
<div className="w-1/2 flex flex-col gap-2 items-center">
<footer className="bg-[#191c24] px-4 mt-2 pt-5 border-t-2 border-blue-400 flex flex-col gap-4 justify-evenly items-center text-center text-gray-400">
<div className='flex justify-evenly flex-wrap'>
<div className="md:w-1/2 flex flex-col gap-2 items-center">
<Link href="/">
<Image src={'/white-logo.png'} alt={''} width={250} height={250} sizes='250' />
</Link>
Expand All @@ -17,28 +18,30 @@ const Footer = () => {

<div className="flex flex-col gap-2">
<h2 className="text-xl">Connect with me</h2>
<div className="flex justify-evenly gap-1">
<Link href="https://discord.gg/tSqtvHUJzE">
<FaDiscord className="w-6 h-6 text-[#5865F2]" />
<div className="flex justify-evenly gap-3">
<Link href="https://discord.gg/tSqtvHUJzE" className='border-2 border-gray-600 flex items-center p-2 rounded-full'>
<FaDiscord className="w-5 h-5 text-[#5865F2]" />
</Link>
<Link href="https://www.linkedin.com/in/avdhesh-varshney/">
<FaLinkedin className="w-6 h-6 text-[#0077B5]" />
<Link href="https://www.linkedin.com/in/avdhesh-varshney/" className='border-2 border-gray-600 flex items-center p-2 rounded-full'>
<FaLinkedin className="w-5 h-5 text-[#0077B5]" />
</Link>
<Link href="https://x.com/__Avdhesh__">
<FaXTwitter className="w-6 h-6 text-[#1DA1F2]" />
<Link href="https://x.com/__Avdhesh__" className='border-2 border-gray-600 flex items-center p-2 rounded-full'>
<FaXTwitter className="w-5 h-5 text-[#1DA1F2]" />
</Link>
<Link href="https://www.youtube.com/@Code_A2Z">
<FaYoutube className="w-6 h-6 text-[#FF0000]" />
<Link href="https://www.youtube.com/@Code_A2Z" className='border-2 border-gray-600 flex items-center p-2 rounded-full'>
<FaYoutube className="w-5 h-5 text-[#FF0000]" />
</Link>
<Link href="https://github.com/Avdhesh-Varshney">
<FaGithub className="w-6 h-6 text-[#e0d9d9]" />
<Link href="https://github.com/Avdhesh-Varshney" className='border-2 border-gray-600 flex items-center p-2 rounded-full'>
<FaGithub className="w-5 h-5 text-[#e0d9d9]" />
</Link>
</div>
<div className="flex flex-col gap-1">

</div>
</div>
<div className="flex gap-6 border-t-2 w-11/12 border-gray-600 items-center py-3 justify-center flex-wrap">
<p className="text-sm">{${new Date().getFullYear()} All Rights Reserved`}</p>
<b className="text-sm">Made By Avdhesh Varshney 👦</b>
<b className="text-sm text-white">Made By Avdhesh Varshney 👦</b>
</div>
</div>
</footer>
)
}
Expand Down

0 comments on commit df902bd

Please sign in to comment.