File tree Expand file tree Collapse file tree 3 files changed +11
-6
lines changed
Expand file tree Collapse file tree 3 files changed +11
-6
lines changed Original file line number Diff line number Diff line change 11@import "tailwindcss/base" ;
22@import "tailwindcss/components" ;
33@import "tailwindcss/utilities" ;
4+ @import "@fontsource/poppins/300.css" ;
45@import "@fontsource/poppins/400.css" ;
6+ @import "@fontsource/poppins/500.css" ;
7+ @import "@fontsource/poppins/600.css" ;
8+ @import "@fontsource/poppins/700.css" ;
9+ @import "@fontsource/poppins/800.css" ;
510@import "@fontsource/poppins/900.css" ;
611@import "@fontsource/league-gothic" ;
712
Original file line number Diff line number Diff line change @@ -9,20 +9,20 @@ function TeamMember({ member }) {
99 member ;
1010
1111 return (
12- < div className = "transition ease-in-out delay-150 hover:-translate-y-1 hover:scale-105 duration-200 hover:drop-shadow-2xl drop-shadow-background cursor-pointer bg-gradient-to-br from-gradient-light to-gradient-dark rounded-3xl shadow-2xl shadow-background overflow-hidden p-2 space-y-4 align-middle max-w-[350px]" >
13- < div className = "pt -12 border-8xl border-4 h-full border-secondary-light bg-gradient-to-br from-gradient-light to-gradient-dark rounded-3xl overflow-hidden p-3 space-y-4 align-middle" >
12+ < div className = "transition ease-in-out delay-150 hover:-translate-y-1 hover:scale-105 duration-200 hover:drop-shadow-2xl drop-shadow-background cursor-pointer bg-gradient-to-br from-gradient-light to-gradient-dark rounded-3xl shadow-2xl shadow-background overflow-hidden p-2 align-middle max-w-[350px]" >
13+ < div className = "py -12 border-8xl border-4 h-full border-secondary-light bg-gradient-to-br from-gradient-light to-gradient-dark rounded-3xl overflow-hidden p-3 align-middle" >
1414 < img
1515 src = { image }
1616 alt = { name }
1717 className = "w-32 h-32 rounded-full mx-auto"
1818 />
19- < h2 className = "text-2xl mt-16 font-poppins font-thin text-center text-text-light" >
19+ < h2 className = "text-xl mt-8 font-poppins font-thin text-center tracking-wide text-text-light" >
2020 { name }
2121 </ h2 >
22- < p className = "text-l font-poppins text-center font-bold text-text-light" >
22+ < p className = "text-sm mt-2 font-poppins text-center font-semibold tracking-wide text-text-light" >
2323 { position }
2424 </ p >
25- < p className = "font-poppins text-center text-wrap text-text -light" >
25+ < p className = "text-sm font-poppins my-4 text-center text-wrap text-secondary -light" >
2626 { description }
2727 </ p >
2828 < div className = "flex justify-center space-x-4" >
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ function Teams() {
1818 text = "MEET OUR TEAM"
1919 className = "text-center absolute top-0 left-0 right-0 mb-24"
2020 />
21- < div className = "flex flex-row flex-wrap gap-6 justify-center items-center mt-12" >
21+ < div className = "flex flex-row flex-wrap gap-16 justify-center items-center mt-12" >
2222 { teamMembers }
2323 </ div >
2424 < SkewButton text = "SEE ALL" link = "/all-members" className = "mt-16" />
You can’t perform that action at this time.
0 commit comments