3 Commits

Author SHA1 Message Date
c785c25ac3 Update src/app/page.tsx 2025-12-28 13:56:01 +00:00
5a3436354c Update src/app/page.tsx 2025-12-28 13:53:18 +00:00
de2e56f5e1 Update src/app/layout.tsx 2025-12-28 13:53:17 +00:00
2 changed files with 23 additions and 23 deletions

View File

@@ -1261,4 +1261,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}

View File

@@ -4,7 +4,7 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
import HeroOverlay from '@/components/sections/hero/HeroOverlay';
import TestimonialCardNine from '@/components/sections/testimonial/TestimonialCardNine';
import TeamCardFive from '@/components/sections/team/TeamCardFive';
import TeamCardThree from '@/components/sections/team/TeamCardThree';
import ContactText from '@/components/sections/contact/ContactText';
import FooterSplit from '@/components/sections/footer/FooterSplit';
import { Phone, Mail, MapPin, Users } from "lucide-react";
@@ -98,8 +98,8 @@ export default function Page() {
</div>
<div id="team" data-section="team">
<TeamCardFive
team={[
<TeamCardThree
members={[
{
id: "1",
name: "Dr. Sarah Johnson",
@@ -144,45 +144,45 @@ export default function Page() {
},
{
id: "7",
name: "Rachel Kim",
role: "Family Therapist",
name: "Rachel Green",
role: "Family Counselor",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766929157319-yldoyv48.jpg",
imageAlt: "Rachel Kim"
imageAlt: "Rachel Green"
},
{
id: "8",
name: "Thomas Anderson",
role: "Peer Counselor",
name: "Dr. Mark Anderson",
role: "Psychiatrist",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766929158175-8ey96anb.jpg",
imageAlt: "Thomas Anderson"
imageAlt: "Dr. Mark Anderson"
},
{
id: "9",
name: "Jennifer Lopez",
role: "Psychiatric Nurse",
name: "Patricia Lewis",
role: "Wellness Coach",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766929318409-kyt0epdo.jpg",
imageAlt: "Jennifer Lopez"
imageAlt: "Patricia Lewis"
},
{
id: "10",
name: "Christopher Brown",
role: "Program Manager",
name: "Kevin Hall",
role: "Career Counselor",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766929156367-4vs8nuk8.jpg",
imageAlt: "Christopher Brown"
imageAlt: "Kevin Hall"
},
{
id: "11",
name: "Amanda White",
role: "Mental Health Counselor",
name: "Jennifer White",
role: "Art Therapist",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766929157319-yldoyv48.jpg",
imageAlt: "Amanda White"
imageAlt: "Jennifer White"
},
{
id: "12",
name: "Kevin Taylor",
role: "Recovery Coach",
name: "Dr. Thomas Reed",
role: "Chief Medical Officer",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766929158175-8ey96anb.jpg",
imageAlt: "Kevin Taylor"
imageAlt: "Dr. Thomas Reed"
}
]}
animationType="slide-up"
@@ -239,4 +239,4 @@ export default function Page() {
</div>
</ThemeProvider>
);
}
}