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](https://images.unsplash.com/photo-1567515004624-219c11d31f2e??auto=format&q=75&fit=crop&w=256)
+
+
+
+
John McCulling
+
Founder / CEO
+
+
+
+
+
+
+
![Photo by christian ferrer](https://images.unsplash.com/photo-1532073150508-0c1df022bdd1?auto=format&q=75&fit=crop&w=256)
+
+
+
+
+
+
+
![Photo by Ayo Ogunseinde](https://images.unsplash.com/photo-1463453091185-61582044d556?auto=format&q=75&fit=crop&w=256)
+
+
+
+
+
+
+
![Photo by Midas Hofstra](https://images.unsplash.com/photo-1529068755536-a5ade0dcb4e8?auto=format&q=75&fit=crop&w=256)
+
+
+
+
Robert Greyson
+
Creative Director
+
+
+
+
+
+
![Photo by Elizeu Dias](https://images.unsplash.com/photo-1522529599102-193c0d76b5b6?auto=format&q=75&fit=crop&w=256)
+
+
+
+
John Roberts
+
Investor Relations
+
+
+
+
+
+
![Photo by Matheus Ferrero](https://images.unsplash.com/photo-1488426862026-3ee34a7d66df?auto=format&q=75&fit=crop&w=256)
+
+
+
+
Judy Amandez
+
Senior Art Director
+
+
+
+
+
+
![Photo by Leilani Angel](https://images.unsplash.com/photo-1566492031773-4f4e44671857?auto=format&q=75&fit=crop&w=256)
+
+
+
+
Rahul Williams
+
Creative Director
+
+
+
+
+
+
![Photo by Jernej Graj](https://images.unsplash.com/photo-1562904403-a5106bef8319?auto=format&q=75&fit=crop&w=256)
+
+
+
+
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 = () => {
+
)