Skip to content

Commit

Permalink
Merge branch 'old-dev' into old-production
Browse files Browse the repository at this point in the history
  • Loading branch information
AswinAsok committed Dec 17, 2023
2 parents 7e83f49 + 70fb49e commit d71e01e
Show file tree
Hide file tree
Showing 8 changed files with 49 additions and 1 deletion.
Binary file added public/assets/team/enablerhq/Arun J S.webp
Binary file not shown.
Binary file added public/assets/team/enablerhq/Jibin N.webp
Binary file not shown.
Binary file not shown.
Binary file added public/assets/team/enablerhq/Sarju.webp
Binary file not shown.
Binary file added public/assets/team/enablerhq/Sunil K.webp
Binary file not shown.
1 change: 1 addition & 0 deletions src/Components/TeamCard/TeamCard.css
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ img {
width: 8rem;
height: 8rem;
object-fit: cover;
object-position: top;
}

.team-card__content {
Expand Down
27 changes: 27 additions & 0 deletions src/Pages/Teams/2023/enablerhq.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
[
{
"name": "Sarju S",
"position": "Enablers HQ",
"image": "assets/team/enablerhq/Sarju.webp"
},
{
"name": "Arun J S",
"position": "Enablers HQ",
"image": "assets/team/enablerhq/Arun J S.webp"
},
{
"name": "Jibin N",
"position": "Enablers HQ",
"image": "assets/team/enablerhq/Jibin N.webp"
},
{
"name": "Mohamed Ziyad TA",
"position": "Enablers HQ",
"image": "assets/team/enablerhq/Mohamed Ziyad TA.webp"
},
{
"name": "Sunil K",
"position": "Enablers HQ",
"image": "assets/team/enablerhq/Sunil K.webp"
}
]
22 changes: 21 additions & 1 deletion src/Pages/Teams/Teams.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ const Teams = () => {
let mulearnhq = require("./2023/mulearnhq.json");
let communityteam = require("./2023/communityteam.json");
let associates = require("./2023/associates.json");
let enablerhq = require("./2023/enablerhq.json");

const handleFilterChange = (e) => {
setTeamfilter(e.target.value);
Expand Down Expand Up @@ -66,6 +67,7 @@ const Teams = () => {
<option value="execom">Execom</option>
<option value="mulearnhq">µLearn HQ</option>
<option value="associates">Associates</option>
<option value="enablershq">Enablers HQ</option>
<option value="mulearnpillar3">µLearn Pillars Q3</option>
<option value="mulearnpillar1">µLearn Pillars Q1</option>
<option value="communityteam">Community Team</option>
Expand Down Expand Up @@ -146,6 +148,24 @@ const Teams = () => {
</section>
)}

{(teamName === "all" || teamName === "enablerhq") && (
<section id={styles.execom} className={styles.team_group}>
<p className={styles.team_title}>Enablers HQ</p>
<p className={styles.team_desc}></p>
<div className={styles.members_list}>
{enablerhq.map((member) => {
return (
<TeamCard
name={member.name}
designation={member.position}
image={member.image}
/>
);
})}
</div>
</section>
)}

{(teamName === "all" || teamName === "mulearnpillar3") && (
<section id={styles.execom} className={styles.team_group}>
<p className={styles.team_title}>µLearn Pillars Q3</p>
Expand Down Expand Up @@ -176,7 +196,7 @@ const Teams = () => {
</div>
</section>
)}
{(teamName === "mulearnpillar1") && (
{teamName === "mulearnpillar1" && (
<section id={styles.execom} className={styles.team_group}>
<p className={styles.team_title}>µLearn Pillars Q1</p>
<p className={styles.team_desc}>
Expand Down

0 comments on commit d71e01e

Please sign in to comment.