+ {/* Fixed description */}
+
+
+ Events Highlight
+
+
+
+ {/* Images container */}
+
+ {images.map((image) => (
+
+
+

+
+
+ ))}
+
+
+ );
+}
+
+export default EventsHighlight;
diff --git a/src/components/Footer/index.jsx b/src/components/Footer/index.jsx
deleted file mode 100644
index f81d6c7..0000000
--- a/src/components/Footer/index.jsx
+++ /dev/null
@@ -1,59 +0,0 @@
-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 (
-