-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.jsx
More file actions
59 lines (54 loc) · 2.05 KB
/
index.jsx
File metadata and controls
59 lines (54 loc) · 2.05 KB
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
import { useState, useContext } from "react";
import { Link, useLocation } from "react-router-dom";
import PropTypes from "prop-types";
import SymbiosisLogo from "@/assets/images/symbiosis-logo.png";
import CodexLogo from "@/assets/images/codex-logo.png";
import { CursorVariantContext } from "@/context/CursorVariantProvider";
import Heading from "@/components/Heading/index";
function Footer() {
const [isOpen, setIsOpen] = useState(false);
const location = useLocation();
const { setCursorVariantNone, setCursorVariantDefault } =
useContext(CursorVariantContext);
const handleLinkClick = () => {
setIsOpen(false);
};
return (
<footer className="bg-primary py-6 mt-8">
<div className="container mx-auto">
<div className="flex justify-between items-center mb-4">
<p className="text-white font-bold">CONNECT WITH US</p>
<div className="flex space-x-4">
<a href="#" className="text-white hover:text-gray-300">
<i className="fab fa-instagram"></i>
</a>
<a href="#" className="text-white hover:text-gray-300">
<i className="fab fa-facebook-f"></i>
</a>
<a href="#" className="text-white hover:text-gray-300">
<i className="fab fa-linkedin-in"></i>
</a>
<a href="#" className="text-white hover:text-gray-300">
<i className="fab fa-github"></i>
</a>
</div>
</div>
<div className="flex justify-between items-center">
<div className="flex items-center space-x-4">
<img
src={SymbiosisLogo}
alt="Symbiosis Institute of Technology"
className="h-8"
/>
<p className="text-white font-bold">MADE WITH LOVE BY</p>
<img src={CodexLogo} alt="Team Codex" className="h-8" />
</div>
<p className="text-center text-white">
© 2024 CODEX | ALL RIGHTS RESERVED
</p>
</div>
</div>
</footer>
);
}
export default Footer;