|
| 1 | +import Link from "next/link"; |
| 2 | + |
| 3 | +const SocialButtons = () => { |
| 4 | + return ( |
| 5 | + <div className="flex flex-row items-center justify-center"> |
| 6 | + <div className="group m-3 inline-block h-16 w-16 py-0 hover:w-52 transition-all ease-out bg-white rounded-full float-left overflow-hidden cursor-pointer"> |
| 7 | + <div className="inline-block h-16 w-16 text-center bg-zinc-900 transition-all ease-out box-border rounded-full leading-[65px] group-hover:bg-[#4267B2]"> |
| 8 | + <i className="fab fa-facebook-f text-2xl leading-[60px] transition-all ease-out text-white"></i> |
| 9 | + </div> |
| 10 | + <span className="text-xl font-medium ml-2 leading-[65px] transition-all ease-out group-hover:text-[#4267B2]"> |
| 11 | + <Link href="#">Facebook</Link> |
| 12 | + </span> |
| 13 | + </div> |
| 14 | + <div className="group m-3 inline-block h-16 w-16 py-0 hover:w-52 transition-all ease-out bg-white rounded-full float-left overflow-hidden cursor-pointer"> |
| 15 | + <div className="inline-block h-16 w-16 text-center bg-zinc-900 transition-all ease-out box-border rounded-full leading-[65px] group-hover:bg-[#1DA1F2]"> |
| 16 | + <i className="fab fa-twitter text-2xl leading-[60px] transition-all ease-out text-white"></i> |
| 17 | + </div> |
| 18 | + <span className="text-xl font-medium ml-2 leading-[65px] transition-all ease-out group-hover:text-[#1DA1F2]"> |
| 19 | + <Link href="#">Twitter</Link> |
| 20 | + </span> |
| 21 | + </div> |
| 22 | + <div className="group m-3 inline-block h-16 w-16 py-0 hover:w-52 transition-all ease-out bg-white rounded-full float-left overflow-hidden cursor-pointer"> |
| 23 | + <div className="inline-block h-16 w-16 text-center bg-zinc-900 transition-all ease-out box-border rounded-full leading-[65px] group-hover:bg-[#E1306C]"> |
| 24 | + <i className="fab fa-instagram text-2xl leading-[60px] transition-all ease-out text-white"></i> |
| 25 | + </div> |
| 26 | + <span className="text-xl font-medium ml-2 leading-[65px] transition-all ease-out group-hover:text-[#E1306C]"> |
| 27 | + <Link href="#">Instagram</Link> |
| 28 | + </span> |
| 29 | + </div> |
| 30 | + <div className="group m-3 inline-block h-16 w-16 py-0 hover:w-52 transition-all ease-out bg-white rounded-full float-left overflow-hidden cursor-pointer"> |
| 31 | + <div className="inline-block h-16 w-16 text-center bg-zinc-900 transition-all ease-out box-border rounded-full leading-[65px] group-hover:bg-[#333]"> |
| 32 | + <i className="fab fa-github text-2xl leading-[60px] transition-all ease-out text-white"></i> |
| 33 | + </div> |
| 34 | + <span className="text-xl font-medium ml-2 leading-[65px] transition-all ease-out group-hover:text-[#333]"> |
| 35 | + <Link href="#">Github</Link> |
| 36 | + </span> |
| 37 | + </div> |
| 38 | + <div className="group m-3 inline-block h-16 w-16 py-0 hover:w-52 transition-all ease-out bg-white rounded-full float-left overflow-hidden cursor-pointer"> |
| 39 | + <div className="inline-block h-16 w-16 text-center bg-zinc-900 transition-all ease-out box-border rounded-full leading-[65px] group-hover:bg-[#ff0000]"> |
| 40 | + <i className="fab fa-youtube text-2xl leading-[60px] transition-all ease-out text-white"></i> |
| 41 | + </div> |
| 42 | + <span className="text-xl font-medium ml-2 leading-[65px] transition-all ease-out group-hover:text-[#ff0000]"> |
| 43 | + <Link href="#">YouTube</Link> |
| 44 | + </span> |
| 45 | + </div> |
| 46 | + <div className="group m-3 inline-block h-16 w-16 py-0 hover:w-52 transition-all ease-out bg-white rounded-full float-left overflow-hidden cursor-pointer"> |
| 47 | + <div className="inline-block h-16 w-16 text-center bg-zinc-900 transition-all ease-out box-border rounded-full leading-[65px] group-hover:bg-[#0A66C2]"> |
| 48 | + <i className="fab fa-linkedin text-2xl leading-[60px] transition-all ease-out text-white"></i> |
| 49 | + </div> |
| 50 | + <span className="text-xl font-medium ml-2 leading-[65px] transition-all ease-out group-hover:text-[#0A66C2]"> |
| 51 | + <Link href="#">Linkedin</Link> |
| 52 | + </span> |
| 53 | + </div> |
| 54 | + </div> |
| 55 | + ); |
| 56 | +}; |
| 57 | + |
| 58 | +export default SocialButtons; |
0 commit comments