File size: 1,851 Bytes
8b105ad
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
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 (
    <Foot className=".footer">
      <div className="flex justify-center items-center ">
        <p className="text-sm">&copy; {new Date().getFullYear()} Genomatics Pvt. Ltd. All Rights Reserved.</p>
        <div className="flex justify-center items-center space-x-6 ml-4">
          {/* Twitter Icon with Gradient Hover */}
          <IconLink
            aria-label="x"
            href="https://x.com/" // Replace with your actual Twitter link
            target="_blank"
            rel="noopener noreferrer"
            className="text-xl"
          >
            <FaXTwitter />
          </IconLink>

          {/* LinkedIn Icon with Gradient Hover */}
          <IconLink
            aria-label="linkedin"
            href="https://linkedin.com/company/genomatics" // Replace with your actual LinkedIn link
            target="_blank"
            rel="noopener noreferrer"
            className="text-xl"
          >
            <FaLinkedin />
          </IconLink>
        </div>
      </div>

      {/* Define the gradient used for the icons */}
      <svg width="0" height="0">
      </svg>
    </Foot>
  );
};

export default Footer;