Skip to content
Merged
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
13 changes: 0 additions & 13 deletions frontend/src/components/About/MeetTheTeam.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -85,19 +85,6 @@ const categories = [
{ name: 'Ganesh Kumarappan', title: 'Backend Developer', photo: Ganesh },
],
},
{
id: 3,
name: 'CSES WebDev',
members: [
{ name: 'Shruti Bhamidipati', title: 'President', photo: Shruti },
{ name: 'Manan Patel', title: 'VP Finance', photo: Manan },
{ name: 'Jheel Gandhi', title: 'VP Design', photo: Jheel },
{ name: 'Sonia Fereidooni', title: 'VP Operations', photo: Sonia },
{ name: 'Ryan Rickey', title: 'Software Team Lead', photo: Ryan },
{ name: 'Jake Villaseno', title: 'UI/UX Designer', photo: Jake },
//{ name: 'Saleha Ahmedi', title: 'WebDev', photo: Saleha},
],
},
{
id: 4,
name: 'CSES Open Source',
Expand Down
33 changes: 6 additions & 27 deletions frontend/src/components/About/OurCommunities.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -31,27 +31,6 @@ const Communities = () => {
</p>

<Grid container spacing={2} sx={{ justifyContent: 'center', alignItems: 'center'}}>
<Grid item
sx={{
...styles.communityCard,
width: verySmallScreen ? '250px' : { xs: '350px', sm: '500px', md: '500px' },
height: verySmallScreen ? '84px' : { xs: '100px', sm: '160px', md: '160px' },
margin: verySmallScreen ? '10% 0% 0% 0%' : { xs: '10% 2% 2% 2%', sm: '5% 3%', md: '3% 2%' }
}}>
<img
src={innovate}
alt="Innovate"
style={{ ...styles.communityCardImg, backgroundColor: 'black'}}
/>
<Box sx={{ height: 'auto', padding: verySmallScreen ? '2%' : '4%', alignSelf: 'center' }}>
<Box sx={{ ...styles.subheadingTop }} >
CSES Innovate
</Box>
<p style={{ color: 'black', fontSize: 'clamp(8px, 2vw, 16px)', marginTop: verySmallScreen ? '2px' :'6px'}}>
Learn about tech entrepreneurship! Form teams and build your own start-ups from ideation to pitch.
</p>
</Box>
</Grid>
<Grid item
sx={{
...styles.communityCard,
Expand Down Expand Up @@ -102,16 +81,16 @@ const Communities = () => {
margin: verySmallScreen ? '10% 0% 0% 0%' : { xs: '10% 2% 2% 2%', sm: '5% 3%', md: '3% 2%' }
}}>
<img
src={webdev}
alt="WebDev"
style={{ ...styles.communityCardImg}}
src={innovate}
alt="Innovate"
style={{ ...styles.communityCardImg, backgroundColor: 'black'}}
/>
<Box sx={{ height: 'auto', padding: verySmallScreen ? '2%' : '4%', alignSelf: 'center' }}>
<Box sx={{ ...styles.subheadingTop }} >
CSES WebDev
CSES Innovate
</Box>
<p style={{ color: 'black', fontSize: 'clamp(8px, 2vw, 16px)', marginTop: verySmallScreen ? '2px' : '6px'}}>
Gain hands-on experience in web design and development for real clients, from UCSD clubs to non-profits!
<p style={{ color: 'black', fontSize: 'clamp(8px, 2vw, 16px)', marginTop: verySmallScreen ? '2px' :'6px'}}>
Learn about tech entrepreneurship! Form teams and build your own start-ups from ideation to pitch.
</p>
</Box>
</Grid>
Expand Down