-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
set layout in research section of ee
- Loading branch information
1 parent
4fcfeb3
commit 00ef087
Showing
2 changed files
with
68 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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: "[email protected]", | ||
}, | ||
], | ||
// <th>Name of the faculty</th> | ||
// <th>Mail</th> | ||
// staffmember: [ | ||
// { | ||
// "S.No.": 1, | ||
|
@@ -1486,6 +1499,52 @@ export const Achievements = [ | |
// ), | ||
// }, | ||
// ] | ||
export const Research = [ | ||
{ | ||
content: ( | ||
<> | ||
<h2>List of Research Projects Sanctioned / On-going: -</h2> | ||
<h5> | ||
The list of sponsored Research projects carried out by the faculty members | ||
of the department are provided in the following table: | ||
</h5> | ||
<table className="table-act"> | ||
<thead> | ||
<tr className="syllabus-table-head"> | ||
<th>Sr. No.</th> | ||
<th>Title of the Project</th> | ||
</tr> | ||
</thead>{" "} | ||
<tbody> | ||
{Tables.research.map((row, idx) => ( | ||
<tr key={idx}> | ||
<td>{row["Sr.No."]}</td> | ||
<td>{row["Title"]}</td> | ||
</tr> | ||
))} | ||
</tbody> | ||
</table> | ||
<h2>Faculty Details: -</h2> | ||
<table className="table-act"> | ||
<thead> | ||
<tr className="syllabus-table-head"> | ||
<th>Name of the faculty</th> | ||
<th>Mail</th> | ||
</tr> | ||
</thead>{" "} | ||
<tbody> | ||
{Tables.faculty.map((row, idx) => ( | ||
<tr key={idx}> | ||
<td>{row["Name of the faculty"]}</td> | ||
<td>{row["Mail"]}</td> | ||
</tr> | ||
))} | ||
</tbody> | ||
</table> | ||
</> | ||
), | ||
}, | ||
] | ||
export const Activities = [ | ||
{ | ||
content: ( | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters