diff --git a/src/components/OurTeam.jsx b/src/components/OurTeam.jsx new file mode 100644 index 0000000..47e3495 --- /dev/null +++ b/src/components/OurTeam.jsx @@ -0,0 +1,223 @@ + +const OurTeam = () => { + return ( +
+
+
+
+

Meet our Team

+ +

Meet the driving force behind our success - a diverse team united by passion and expertise. Discover the faces behind our brand, each contributing their unique talents to deliver exceptional experiences.

+
+ +
+
+
+ Photo by Radu Florin +
+ +
+
John McCulling
+

Founder / CEO

+ + +
+
+
+
+ Photo by christian ferrer +
+ +
+
Kate Berg
+

CFO

+ + +
+
+
+
+ Photo by Ayo Ogunseinde +
+ +
+
Greg Jackson
+

CTO

+ +
+
+
+
+ Photo by Midas Hofstra +
+ +
+
Robert Greyson
+

Creative Director

+ +
+
+
+
+ Photo by Elizeu Dias +
+ +
+
John Roberts
+

Investor Relations

+ +
+
+
+
+ Photo by Matheus Ferrero +
+ +
+
Judy Amandez
+

Senior Art Director

+ +
+
+
+
+ Photo by Leilani Angel +
+ +
+
Rahul Williams
+

Creative Director

+ +
+
+
+
+ Photo by Jernej Graj +
+ +
+
Ari Ferris
+

Marketing Analyst

+ +
+
+
+
+
+
+ ) +} + +export default OurTeam; diff --git a/src/components/components.tsx b/src/components/components.tsx index 415789d..28b3ced 100644 --- a/src/components/components.tsx +++ b/src/components/components.tsx @@ -19,6 +19,7 @@ import PdfCard from './cards/PdfCard' import NotesContainer from './containers/NotesContainer' import ReactEmojiButton from './buttons/ReactEmojiButton' import PdfContainer from './containers/PdfContainer' +import OurTeam from './OurTeam' export { WhyChooseUs, diff --git a/src/pages/static/about-us.tsx b/src/pages/static/about-us.tsx index be951a1..f18dccd 100644 --- a/src/pages/static/about-us.tsx +++ b/src/pages/static/about-us.tsx @@ -2,6 +2,7 @@ import {LandingNav, LandingFooter} from '@/components/components' import AboutUsData from '@/data/local/about_us.json' import WhyChooseGyanGuru from '@/components/cards/WhyChooseGyanGuruCard' import WhyChooseData from '@/data/local/about_why_choose.json' +import OurTeam from '@/components/OurTeam' const AboutUs = () => { return ( @@ -40,6 +41,7 @@ const AboutUs = () => { + )