-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
982cee6
commit e453cf2
Showing
1 changed file
with
16 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 | ||
|
@@ -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> | ||
|
||
); | ||
}; | ||
|
||
|