From 9aacaeeeb375ad37fb493ef90935f6ba5cc1fa37 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 31 Mar 2026 16:42:42 +0000 Subject: [PATCH 1/2] Update src/app/doctors/page.tsx --- src/app/doctors/page.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/src/app/doctors/page.tsx b/src/app/doctors/page.tsx index 23f8c2f..47057c5 100644 --- a/src/app/doctors/page.tsx +++ b/src/app/doctors/page.tsx @@ -18,6 +18,7 @@ export default function DoctorsPage() { tag="Specialists" memberVariant="card" useInvertedBackground={false} + membersAnimation="slide-up" members={[ { id: "1", name: "Dr. Alice Smith" }, { id: "2", name: "Dr. Robert Chen" } -- 2.49.1 From dd49833bdc521a22d634a46cd6187132b61ba519 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 31 Mar 2026 16:42:43 +0000 Subject: [PATCH 2/2] Update src/app/services/page.tsx --- src/app/services/page.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/app/services/page.tsx b/src/app/services/page.tsx index 577c553..811d5a4 100644 --- a/src/app/services/page.tsx +++ b/src/app/services/page.tsx @@ -18,9 +18,9 @@ export default function ServicesPage() { useInvertedBackground={false} animationType="slide-up" features={[ - { id: "s1", title: "General Consultation", author: "Dr. Smith", description: "Talk to a licensed physician 24/7", tags: ["Virtual"] }, - { id: "s2", title: "Specialist Access", author: "Dr. Chen", description: "Connect with top specialists remotely", tags: ["Specialist"] }, - { id: "s3", title: "Mental Health", author: "Dr. Doe", description: "Confidential therapy sessions", tags: ["Therapy"] } + { id: "s1", title: "General Consultation", author: "Dr. Smith", description: "Talk to a licensed physician 24/7", tags: ["Virtual"], videoSrc: "/video.mp4" }, + { id: "s2", title: "Specialist Access", author: "Dr. Chen", description: "Connect with top specialists remotely", tags: ["Specialist"], videoSrc: "/video.mp4" }, + { id: "s3", title: "Mental Health", author: "Dr. Doe", description: "Confidential therapy sessions", tags: ["Therapy"], videoSrc: "/video.mp4" } ]} /> -- 2.49.1