diff --git a/index.html b/index.html
index 0c589ec..57cd15d 100644
--- a/index.html
+++ b/index.html
@@ -1,10 +1,10 @@
-
+
-
+
- Vite + React
+ CohortGate
diff --git a/package-lock.json b/package-lock.json
index 589a4fa..093a557 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -14,6 +14,7 @@
"react": "^19.0.0",
"react-bootstrap": "^2.10.9",
"react-dom": "^19.0.0",
+ "react-icons": "^5.5.0",
"react-router": "^7.3.0",
"react-router-dom": "^7.3.0",
"tailwindcss": "^4.0.12"
@@ -3672,6 +3673,15 @@
"react": "^19.0.0"
}
},
+ "node_modules/react-icons": {
+ "version": "5.5.0",
+ "resolved": "https://registry.npmjs.org/react-icons/-/react-icons-5.5.0.tgz",
+ "integrity": "sha512-MEFcXdkP3dLo8uumGI5xN3lDFNsRtrjbOEKDLD7yv76v4wpnEq2Lt2qeHaQOr34I/wPN3s3+N08WkQ+CW37Xiw==",
+ "license": "MIT",
+ "peerDependencies": {
+ "react": "*"
+ }
+ },
"node_modules/react-is": {
"version": "16.13.1",
"resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz",
diff --git a/package.json b/package.json
index f6c203a..a0f72ca 100644
--- a/package.json
+++ b/package.json
@@ -16,6 +16,7 @@
"react": "^19.0.0",
"react-bootstrap": "^2.10.9",
"react-dom": "^19.0.0",
+ "react-icons": "^5.5.0",
"react-router": "^7.3.0",
"react-router-dom": "^7.3.0",
"tailwindcss": "^4.0.12"
diff --git a/src/App.jsx b/src/App.jsx
index aa35afa..8e0f8cb 100644
--- a/src/App.jsx
+++ b/src/App.jsx
@@ -5,12 +5,16 @@ import AboutUs from "./components/AboutUs/AboutUs";
import Form from "./components/Form/Form";
import Contact from "./components/Contact/Contact";
import "./App.css";
+import Footer from "./components/Footer/Footer";
function RootLayout() {
return (
<>
-
+
+
+
+
>
);
}
diff --git a/src/components/Footer/Footer.jsx b/src/components/Footer/Footer.jsx
index 18f584f..bba7214 100644
--- a/src/components/Footer/Footer.jsx
+++ b/src/components/Footer/Footer.jsx
@@ -1,7 +1,153 @@
import React from "react";
+import {
+ FaLinkedin,
+ FaXTwitter,
+ FaGithub,
+ FaArrowUp,
+ FaEnvelope,
+ FaPhone,
+} from "react-icons/fa6";
+import { FaHome } from "react-icons/fa";
+import { SiGmail } from "react-icons/si";
-function Footer() {
- return Footer
;
-}
+const Footer = () => {
+ const handleScrollToTop = () => {
+ window.scrollTo({ top: 0, behavior: "smooth" });
+ };
+
+ return (
+
+ );
+};
export default Footer;