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" } 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" } ]} />