Merge version_2 into main #4

Merged
bender merged 2 commits from version_2 into main 2026-03-31 16:42:46 +00:00
2 changed files with 4 additions and 3 deletions

View File

@@ -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" }

View File

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