diff --git a/src/Components/Careers/CareersPage.js b/src/Components/Careers/CareersPage.js
index 99a88ef4..2b3fc4b9 100644
--- a/src/Components/Careers/CareersPage.js
+++ b/src/Components/Careers/CareersPage.js
@@ -2,6 +2,9 @@ import React from 'react'
import { FontAwesomeIcon } from '@fortawesome/react-fontawesome';
import { faSearch, faRocket, faHeart } from '@fortawesome/free-solid-svg-icons';
import './careers.css'
+import homeIcon from '../../img/homeicon.png';
+import { Link } from 'react-router-dom';
+
const careers = () => {
const handleResume = () => {
@@ -9,7 +12,12 @@ const careers = () => {
window.location.href = link;
}
return (
+<>
+
+
+
+
Let's build from here, together
Join our team and accelerate human progress through innovative developer collaboration.
@@ -156,6 +164,7 @@ const careers = () => {
+ >
)
}
diff --git a/src/Components/footer_section/Legal/Licensing.js b/src/Components/footer_section/Legal/Licensing.js
index c38a1d78..aeee4b6e 100644
--- a/src/Components/footer_section/Legal/Licensing.js
+++ b/src/Components/footer_section/Legal/Licensing.js
@@ -1,8 +1,15 @@
import React from 'react';
import styled from 'styled-components';
+import homeIcon from '../../../img/homeicon.png';
+import { Link } from 'react-router-dom';
+
const Licensing = () => {
return (
+ <>
+
+
+
@@ -39,6 +46,7 @@ const Licensing = () => {
+ >
);
};
diff --git a/src/Components/footer_section/Legal/PrivacyPolicy.js b/src/Components/footer_section/Legal/PrivacyPolicy.js
index dd16dc9c..575a1abc 100644
--- a/src/Components/footer_section/Legal/PrivacyPolicy.js
+++ b/src/Components/footer_section/Legal/PrivacyPolicy.js
@@ -1,4 +1,7 @@
import styled from "styled-components";
+import homeIcon from '../../../img/homeicon.png';
+import { Link } from 'react-router-dom';
+
const PrivacyContainer = styled.div`
margin: auto;
@@ -63,6 +66,11 @@ const Strong = styled.strong`
const PrivacyPolicy = () => {
return (
+
+ <>
+
+
+
Privacy Policy
Last Updated: 08-06-2024
@@ -124,6 +132,7 @@ const PrivacyPolicy = () => {
Contact: +91 99323 32321
+ >
)
}
diff --git a/src/Components/footer_section/Legal/TermsandConditions.js b/src/Components/footer_section/Legal/TermsandConditions.js
index 9a3ab2b9..6bc60250 100644
--- a/src/Components/footer_section/Legal/TermsandConditions.js
+++ b/src/Components/footer_section/Legal/TermsandConditions.js
@@ -1,4 +1,6 @@
import styled from "styled-components";
+import homeIcon from '../../../img/homeicon.png';
+import { Link } from 'react-router-dom';
const TermsContainer = styled.div`
margin: auto;
@@ -63,6 +65,10 @@ const Strong = styled.strong`
const TermsConditions = () => {
return (
+ <>
+
+
+
Terms and Conditions
Last Updated: 08-06-2024
@@ -96,6 +102,7 @@ const TermsConditions = () => {
Contact: +91 99323 32321
+ >
)
}