diff --git a/src/components/departments/ee/ee-others-data.js b/src/components/departments/ee/ee-others-data.js
index 20ef7b8a..dca6f2cc 100644
--- a/src/components/departments/ee/ee-others-data.js
+++ b/src/components/departments/ee/ee-others-data.js
@@ -792,7 +792,20 @@ const Tables = {
"Resource Persons": "Prof. S.K Sinha (Retd. Prof. IISc Bangalore)",
},
],
-
+ research: [
+ {
+ "Sr.No.": 1,
+ Title: "Hello",
+ },
+ ],
+ faculty: [
+ {
+ "Name of the faculty": "Amitesh Sir",
+ Mail: "amistesh@gmail.com",
+ },
+ ],
+ //
Name of the faculty |
+ // Mail |
// staffmember: [
// {
// "S.No.": 1,
@@ -1486,6 +1499,52 @@ export const Achievements = [
// ),
// },
// ]
+export const Research = [
+ {
+ content: (
+ <>
+ List of Research Projects Sanctioned / On-going: -
+
+ The list of sponsored Research projects carried out by the faculty members
+ of the department are provided in the following table:
+
+
+
+
+ Sr. No. |
+ Title of the Project |
+
+ {" "}
+
+ {Tables.research.map((row, idx) => (
+
+ {row["Sr.No."]} |
+ {row["Title"]} |
+
+ ))}
+
+
+ Faculty Details: -
+
+
+
+ Name of the faculty |
+ Mail |
+
+ {" "}
+
+ {Tables.faculty.map((row, idx) => (
+
+ {row["Name of the faculty"]} |
+ {row["Mail"]} |
+
+ ))}
+
+
+ >
+ ),
+ },
+]
export const Activities = [
{
content: (
diff --git a/src/components/departments/ee/eehome.js b/src/components/departments/ee/eehome.js
index 236323fb..fbca5452 100644
--- a/src/components/departments/ee/eehome.js
+++ b/src/components/departments/ee/eehome.js
@@ -5,6 +5,7 @@ import {
Achievements,
Activities,
Labs,
+ Research,
News_Events,
LabImages,
} from "./ee-others-data"
@@ -501,7 +502,13 @@ export const Outcomes = () => {
)
}
export const research = () => {
- return <>>
+ return (
+ <>
+
+ {Research[0].content}
+
+ >
+ )
}
export const activities = () => {
return (