import React from "react"; import { FaXTwitter, FaLinkedin } from "react-icons/fa6"; import styled from "styled-components"; // Styled Components const Foot = styled.footer` display: flex; justify-content: center; align-items: center; background-color: rgb(42, 45, 49); /* Dark gray */ color: white; padding: 1rem 0.4rem; /* Adjust the padding as needed */ @media(max-width:442px){ } `; const IconLink = styled.a` display: inline-flex; justify-content: center; align-items: center; color: white; /* Default icon color */ font-size: 1.5rem; transition: all 0.3s ease; &:hover svg { fill: #3267B9; /* Apply gradient on hover */ } `; const Footer = () => { return (

© {new Date().getFullYear()} Genomatics Pvt. Ltd. All Rights Reserved.

{/* Twitter Icon with Gradient Hover */} {/* LinkedIn Icon with Gradient Hover */}
{/* Define the gradient used for the icons */}
); }; export default Footer;