Skip to content

Commit

Permalink
Update TeamSection.tsx
Browse files Browse the repository at this point in the history
  • Loading branch information
AnyaKhemlani committed Jul 21, 2024
1 parent 982cee6 commit e453cf2
Showing 1 changed file with 16 additions and 7 deletions.
23 changes: 16 additions & 7 deletions seal-website/app/components/TeamSection.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -97,32 +97,40 @@ const TeamSection = () => {
>
<ProfileCard name="Aaryan Shah" bio={placeholder} />
</motion.div>


</div>
<SectionDivider text="Our Advisors"/>
<div className="
grid
grid-cols-1 md:grid-cols-2 lg:grid-cols-3
gap-6">
<motion.div
initial={{ y: 50, opacity: 0 }}
whileInView={{ y: 0, opacity: 1 }}
viewport={{ once: false }}
transition={{ duration: 0.8, ease: "easeInOut" }}
>
<ProfileCard name="Connor Cross" bio={placeholder} linkedIn="https://www.linkedin.com/in/connor-cross-950116236/" gitHub="https://github.com/cocross1" />
<ProfileCard name="Aakash Shah" bio={aakash} imageSrc="/images/akash.jpg" linkedIn="https://www.linkedin.com/in/aakash-shah-8ba2b355/" twitter="https://x.com/Aakash_K_Shah"/>
</motion.div>
<motion.div
initial={{ y: 50, opacity: 0 }}
whileInView={{ y: 0, opacity: 1 }}
viewport={{ once: false }}
transition={{ duration: 0.8, ease: "easeInOut" }}
>
<ProfileCard name="Anya Khemlani" bio={anya} imageSrc="/images/anya.png" linkedIn="https://www.linkedin.com/in/anya-khemlani/" gitHub="https://github.com/AnyaKhemlani" email="[email protected]"/>
<ProfileCard name="Alister Martin" bio={alister} imageSrc="/images/alister.png" linkedIn="https://www.linkedin.com/in/alister-martin-41b1369a/" twitter="https://x.com/AlisterFMartin"/>
</motion.div>
<motion.div
initial={{ y: 50, opacity: 0 }}
whileInView={{ y: 0, opacity: 1 }}
viewport={{ once: false }}
transition={{ duration: 0.8, ease: "easeInOut" }}
>
<ProfileCard name="Alissa Rogozin" bio={alissa} imageSrc="/images/alissa.png" linkedIn="https://www.linkedin.com/in/alissa-rogozin" gitHub="https://github.com/alissarogozin25" email="[email protected]"/>
<ProfileCard name="Kedar Mate" bio={kedar} imageSrc="/images/kedar.png" linkedIn="https://www.linkedin.com/in/kedarmatemd/" twitter="https://x.com/KedarMate"/>
</motion.div>
</div>
<SectionDivider text="Our Advisors"/>
<SectionDivider text="Web Development Team"/>
<div className="
grid
grid-cols-1 md:grid-cols-2 lg:grid-cols-3
Expand All @@ -133,26 +141,27 @@ const TeamSection = () => {
viewport={{ once: false }}
transition={{ duration: 0.8, ease: "easeInOut" }}
>
<ProfileCard name="Aakash Shah" bio={aakash} imageSrc="/images/akash.jpg" linkedIn="https://www.linkedin.com/in/aakash-shah-8ba2b355/" twitter="https://x.com/Aakash_K_Shah"/>
<ProfileCard name="Connor Cross" bio={placeholder} linkedIn="https://www.linkedin.com/in/connor-cross-950116236/" gitHub="https://github.com/cocross1" />
</motion.div>
<motion.div
initial={{ y: 50, opacity: 0 }}
whileInView={{ y: 0, opacity: 1 }}
viewport={{ once: false }}
transition={{ duration: 0.8, ease: "easeInOut" }}
>
<ProfileCard name="Alister Martin" bio={alister} imageSrc="/images/alister.png" linkedIn="https://www.linkedin.com/in/alister-martin-41b1369a/" twitter="https://x.com/AlisterFMartin"/>
<ProfileCard name="Anya Khemlani" bio={anya} imageSrc="/images/anya.png" linkedIn="https://www.linkedin.com/in/anya-khemlani/" gitHub="https://github.com/AnyaKhemlani" email="[email protected]"/>
</motion.div>
<motion.div
initial={{ y: 50, opacity: 0 }}
whileInView={{ y: 0, opacity: 1 }}
viewport={{ once: false }}
transition={{ duration: 0.8, ease: "easeInOut" }}
>
<ProfileCard name="Kedar Mate" bio={kedar} imageSrc="/images/kedar.png" linkedIn="https://www.linkedin.com/in/kedarmatemd/" twitter="https://x.com/KedarMate"/>
<ProfileCard name="Alissa Rogozin" bio={alissa} imageSrc="/images/alissa.png" linkedIn="https://www.linkedin.com/in/alissa-rogozin" gitHub="https://github.com/alissarogozin25" email="[email protected]"/>
</motion.div>
</div>
</div>

);
};

Expand Down

0 comments on commit e453cf2

Please sign in to comment.