Skip to content

Commit

Permalink
Add social media icons to the footer
Browse files Browse the repository at this point in the history
  • Loading branch information
dishant0406 committed Dec 26, 2023
1 parent c57bfcc commit fb11429
Showing 1 changed file with 17 additions and 3 deletions.
20 changes: 17 additions & 3 deletions lazyweb-landing-page/components/Footer/index.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
import Link from "next/link"
import { AiFillGithub } from "react-icons/ai"
import { FaSitemap } from "react-icons/fa";
import { FaTwitter } from "react-icons/fa";
import { FaLinkedin } from "react-icons/fa";

type Props = {}

Expand All @@ -13,9 +16,20 @@ const Footer = (props: Props) => {
</div>
<p className="text-white md:text-[16px] md:mt-0 mt-[1rem] text-[14px]">Copyright by {new Date().getFullYear()} Lazyweb.rocks</p>
</div>
<Link href="https://github.com/dishant0406/lazyweb">
<AiFillGithub className="w-5 h-5 text-white transition-all duration-300 md:w-7 md:h-7 hover:text-trueGray-400" />
</Link>
<div className="flex gap-[1rem] items-center">
<Link href="/sitemap.xml">
<FaSitemap className="w-5 h-5 text-white transition-all duration-300 md:w-7 md:h-7 hover:text-trueGray-400" />
</Link>
<Link href="https://twitter.com/dishant0406">
<FaTwitter className="w-5 h-5 text-white transition-all duration-300 md:w-7 md:h-7 hover:text-trueGray-400" />
</Link>
<Link href="https://www.linkedin.com/in/dishant0406/">
<FaLinkedin className="w-5 h-5 text-white transition-all duration-300 md:w-7 md:h-7 hover:text-trueGray-400" />
</Link>
<Link href="https://github.com/dishant0406/lazyweb">
<AiFillGithub className="w-5 h-5 text-white transition-all duration-300 md:w-7 md:h-7 hover:text-trueGray-400" />
</Link>
</div>
</div>
</div>
)
Expand Down

1 comment on commit fb11429

@vercel
Copy link

@vercel vercel bot commented on fb11429 Dec 26, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.