Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
34 changes: 22 additions & 12 deletions src/App.css
Original file line number Diff line number Diff line change
Expand Up @@ -696,24 +696,33 @@ a {
text-align: left;
}
.Team-container .title{
height: 10vh;
font-family: var(--font-family);
font-weight: normal;
width: fit-content;
margin-top: 0rem;
position: absolute;
top: -3.5rem;
left: 1.5rem;
/* color: white; */
color: var(--main-white);
height: 10vh;
font-family: var(--font-family);
font-weight: normal;
width: fit-content;
/* color: white; */
color: var(--main-white);
}
.Team-container div{
display: flex;
flex-wrap: wrap;
gap: 2rem;
justify-content: space-around;
}
.MuiGrid-root.MuiGrid-item{
padding-left: none;
}
.Team-individual{
padding: 1em;
height: 12rem;
max-width: 12rem;

}
.Team-individual a{
display: block;
height: 100%;
width: 100%;
}
.Team-Flex{
display: flex;
align-items: flex-start;
Expand All @@ -723,8 +732,9 @@ a {

.Team-Img{
border-radius: 50%;
max-height: 20vh;
max-width: 20vw;
height: 100%;
width: 100%;
object-fit: cover;
overflow: hidden;
/* filter: drop-shadow(0px 0px 10px #FF5E54) saturate(150%); */
filter: drop-shadow(0px 0px 10px var(--orange-font-color)) saturate(150%);
Expand Down
Binary file added src/Assets/Team/HM11Team/Roma.webp
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
12 changes: 6 additions & 6 deletions src/Components/Team.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import React from 'react';
import { Grid } from "@mui/material";
// import Jet from '../Assets/Team/jet.JPG';
// import Porfi from '../Assets/Team/porfi.JPG';
// import Alisson from '../Assets/Team/alisson.JPG';
Expand Down Expand Up @@ -31,6 +30,7 @@ import Isha from '../Assets/Team/HM10Team/Isha.webp'
import Ali from '../Assets/Team/HM11Team/Ali.webp'
import Alondra from '../Assets/Team/HM11Team/Alondra.webp'
import Sohdai from '../Assets/Team/HM11Team/Sohdai.webp'
import Roma from '../Assets/Team/HM11Team/Roma.webp'


function Team() {
Expand Down Expand Up @@ -65,25 +65,25 @@ function Team() {
{ name: 'Ali Mehry', imgSrc: Ali, linkedIn: "http://github.com/ahmadalimehry" },
{ name: 'Alondra Valdez', imgSrc: Alondra, linkedIn: "https://www.linkedin.com/in/alondra-valdez-080032357/" },
{ name: 'Sohdai Yokokawa', imgSrc: Sohdai, linkedIn: "http://github.com/Syoko3" },
{ name: 'Roma Alimchandani', imgSrc: Roma, linkedIn: "http://github.com/romaalimchandani" },
]

return (
<div className='Team' id="team">
<div className="Team-container">
<h2 className="title">our team</h2>
<Grid container spacing={8} className="Team-Flex"
justifyContent="start">
<div>

{teamMembers.map((teamMember, index) => {
return (
<Grid item xs={3} className="Team-individual" key={index}>
<div className="Team-individual" key={index}>
<a href={teamMember.linkedIn}><img className="Team-Img" src={teamMember.imgSrc} alt="Avatar" /></a>
<div className="Team-Name">{teamMember.name}</div>
</Grid>
</div>
)
})}

</Grid>
</div>
</div>
</div>
);
Expand Down