Merge version_1 into main #2

Merged
bender merged 3 commits from version_1 into main 2026-03-06 14:54:20 +00:00
3 changed files with 187 additions and 249 deletions

View File

@@ -6,31 +6,28 @@ import SplitAbout from "@/components/sections/about/SplitAbout";
import SocialProofOne from "@/components/sections/socialProof/SocialProofOne";
import ContactSplitForm from "@/components/sections/contact/ContactSplitForm";
import FooterBase from "@/components/sections/footer/FooterBase";
import Link from "next/link";
import { Award, Users, Clock, Lightbulb } from "lucide-react";
export default function AboutPage() {
const navItems = [
{ name: "Home", id: "/" },
{ name: "Services", id: "services" },
{ name: "Providers", id: "providers" },
{ name: "About", id: "about" },
{ name: "Contact", id: "contact" },
{ name: "Services", id: "/services" },
{ name: "Providers", id: "/providers" },
{ name: "About", id: "/about" },
{ name: "Contact", id: "/contact" },
];
const footerColumns = [
{
title: "Services",
items: [
{ label: "Primary Care", href: "services" },
{ label: "Preventative Care", href: "services" },
{ label: "Mental Health", href: "services" },
{ label: "Telehealth", href: "services" },
title: "Services", items: [
{ label: "Primary Care", href: "#services" },
{ label: "Preventative Care", href: "#services" },
{ label: "Mental Health", href: "#services" },
{ label: "Telehealth", href: "#services" },
],
},
{
title: "Company",
items: [
title: "Company", items: [
{ label: "About Us", href: "/about" },
{ label: "Our Providers", href: "/providers" },
{ label: "Careers", href: "#" },
@@ -38,8 +35,7 @@ export default function AboutPage() {
],
},
{
title: "Contact",
items: [
title: "Contact", items: [
{ label: "(410) 555-0123", href: "tel:(410)555-0123" },
{ label: "Glen Burnie, MD", href: "#" },
{ label: "Book Appointment", href: "/contact" },
@@ -49,15 +45,7 @@ export default function AboutPage() {
];
const insuranceNames = [
"Blue Cross Blue Shield",
"Aetna",
"United Healthcare",
"Cigna",
"Medicare",
"Medicaid",
"Tricare",
"Humana",
];
"Blue Cross Blue Shield", "Aetna", "United Healthcare", "Cigna", "Medicare", "Medicaid", "Tricare", "Humana"];
return (
<ThemeProvider
@@ -88,34 +76,27 @@ export default function AboutPage() {
tag="Our Commitment"
bulletPoints={[
{
title: "Experienced Providers",
description:
"Board-certified physicians and specialists with decades of combined experience",
icon: Award,
title: "Experienced Providers", description:
"Board-certified physicians and specialists with decades of combined experience", icon: Award,
},
{
title: "Patient-Centered Care",
description:
"We listen, understand your concerns, and develop treatment plans that work for your life",
icon: Users,
title: "Patient-Centered Care", description:
"We listen, understand your concerns, and develop treatment plans that work for your life", icon: Users,
},
{
title: "Accessible Healthcare",
description:
"Convenient scheduling, same-day appointments when available, and flexible hours",
icon: Clock,
title: "Accessible Healthcare", description:
"Convenient scheduling, same-day appointments when available, and flexible hours", icon: Clock,
},
{
title: "Preventative Focus",
description:
"We emphasize wellness and prevention to help you stay healthy long-term",
icon: Lightbulb,
title: "Preventative Focus", description:
"We emphasize wellness and prevention to help you stay healthy long-term", icon: Lightbulb,
},
]}
imageSrc="http://img.b2bpic.net/free-photo/team-doctors-looking-digital-tablet_107420-84759.jpg?_wi=2"
imageSrc="http://img.b2bpic.net/free-photo/team-doctors-looking-digital-tablet_107420-84759.jpg"
imageAlt="First-Care Wellness team in clinic"
imagePosition="right"
textboxLayout="default"
mediaAnimation="none"
useInvertedBackground={false}
/>
</div>
@@ -139,38 +120,24 @@ export default function AboutPage() {
description="Schedule an appointment with one of our experienced providers today. We're here to support your wellness journey with compassionate, personalized care."
inputs={[
{
name: "name",
type: "text",
placeholder: "Full Name",
required: true,
name: "name", type: "text", placeholder: "Full Name", required: true,
},
{
name: "email",
type: "email",
placeholder: "Email Address",
required: true,
name: "email", type: "email", placeholder: "Email Address", required: true,
},
{
name: "phone",
type: "tel",
placeholder: "Phone Number",
required: true,
name: "phone", type: "tel", placeholder: "Phone Number", required: true,
},
{
name: "service",
type: "text",
placeholder: "Preferred Service",
required: false,
name: "service", type: "text", placeholder: "Preferred Service", required: false,
},
]}
textarea={{
name: "message",
placeholder: "Tell us about your healthcare needs...",
rows: 5,
name: "message", placeholder: "Tell us about your healthcare needs...", rows: 5,
required: false,
}}
useInvertedBackground={false}
imageSrc="http://img.b2bpic.net/free-photo/smiling-black-doctor-with-face-mask-talking-couple-medical-counselling-clinic_637285-8977.jpg?_wi=1"
imageSrc="http://img.b2bpic.net/free-photo/smiling-black-doctor-with-face-mask-talking-couple-medical-counselling-clinic_637285-8977.jpg"
imageAlt="First-Care Wellness clinic interior"
mediaAnimation="slide-up"
mediaPosition="right"

View File

@@ -26,36 +26,33 @@ export default function HomePage() {
const navItems = [
{ name: "Home", id: "/" },
{ name: "Services", id: "/services" },
{ name: "Providers", id: "providers" },
{ name: "About", id: "about" },
{ name: "Contact", id: "cta" },
{ name: "Providers", id: "/providers" },
{ name: "About", id: "/about" },
{ name: "Contact", id: "/contact" },
];
const footerColumns = [
{
title: "Services",
items: [
{ label: "Primary Care", href: "/services" },
{ label: "Preventative Care", href: "/services" },
{ label: "Mental Health", href: "/services" },
{ label: "Telehealth", href: "/services" },
title: "Services", items: [
{ label: "Primary Care", href: "#services" },
{ label: "Preventative Care", href: "#services" },
{ label: "Mental Health", href: "#services" },
{ label: "Telehealth", href: "#services" },
],
},
{
title: "Company",
items: [
{ label: "About Us", href: "#about" },
{ label: "Our Providers", href: "#providers" },
title: "Company", items: [
{ label: "About Us", href: "/about" },
{ label: "Our Providers", href: "/providers" },
{ label: "Careers", href: "#" },
{ label: "News", href: "#" },
],
},
{
title: "Contact",
items: [
title: "Contact", items: [
{ label: "(410) 555-0123", href: "tel:(410)555-0123" },
{ label: "Glen Burnie, MD", href: "#" },
{ label: "Book Appointment", href: "#cta" },
{ label: "Book Appointment", href: "/contact" },
{ label: "Patient Portal", href: "#" },
],
},
@@ -88,31 +85,110 @@ export default function HomePage() {
logoText="FIRST-CARE WELLNESS"
description="Compassionate primary care focused on prevention, wellness, and long-term health. Meet experienced providers who listen and care."
buttons={[
{ text: "Book Appointment", href: "#cta" },
{ text: "Book Appointment", href: "/contact" },
{ text: "Call the Clinic", href: "tel:(410)555-0123" },
]}
slides={[
{
imageSrc:
"http://img.b2bpic.net/free-photo/glass-buildings-seen-from-lake_1127-2268.jpg",
imageAlt: "Modern welcoming clinic entrance",
},
"http://img.b2bpic.net/free-photo/glass-buildings-seen-from-lake_1127-2268.jpg", imageAlt: "Modern welcoming clinic entrance"},
{
imageSrc:
"http://img.b2bpic.net/free-photo/happy-senior-woman-communicating-with-health-care-provider-while-he-is-analyzing-medical-data-computer-clinic_637285-1920.jpg",
imageAlt: "Healthcare provider with patient",
},
"http://img.b2bpic.net/free-photo/happy-senior-woman-communicating-with-health-care-provider-while-he-is-analyzing-medical-data-computer-clinic_637285-1920.jpg", imageAlt: "Healthcare provider with patient"},
{
imageSrc:
"http://img.b2bpic.net/free-photo/female-doctor-reassuring-supporting-senior-adult-patient-hospital-kind-caring-young-woman-nurse-caregiver-helping-older-retired-man-talking-giving-comfort-expressing-care-concept_657921-86.jpg",
imageAlt: "Compassionate medical consultation",
},
"http://img.b2bpic.net/free-photo/female-doctor-reassuring-supporting-senior-adult-patient-hospital-kind-caring-young-woman-nurse-caregiver-helping-older-retired-man-talking-giving-comfort-expressing-care-concept_657921-86.jpg", imageAlt: "Compassionate medical consultation"},
]}
autoplayDelay={5000}
showDimOverlay={true}
/>
</div>
<div id="services" data-section="services">
<FeatureCardTwentyFive
title="Our Services"
description="Comprehensive healthcare services designed to meet the needs of our diverse patient community"
tag="What We Offer"
features={[
{
title: "Primary Care", description:
"Ongoing health management and preventative screenings for the whole family", icon: Heart,
mediaItems: [
{
imageSrc:
"http://img.b2bpic.net/free-photo/medical-assistant-consulting-senior-patients-about-test-results-mri-scans_482257-122824.jpg", imageAlt: "Primary care consultation examination room"},
{
imageSrc:
"http://img.b2bpic.net/free-photo/doctor-elderly-man-consultation_651396-1114.jpg", imageAlt: "Health screening medical equipment diagnostic"},
],
},
{
title: "Preventative Care", description:
"Annual exams, vaccinations, and wellness programs to keep you healthy", icon: Shield,
mediaItems: [
{
imageSrc:
"http://img.b2bpic.net/free-photo/woman-patient-signing-medical-documents-discussing-medication-treatment_482257-23033.jpg", imageAlt: "Preventative health screening examination"},
{
imageSrc:
"http://img.b2bpic.net/free-photo/group-women-with-male-instructor-sitting-yoga-mats_171337-13835.jpg", imageAlt: "Wellness education health coaching session"},
],
},
{
title: "Chronic Disease Management", description:
"Specialized support for diabetes, hypertension, asthma, and other chronic conditions", icon: TrendingDown,
mediaItems: [
{
imageSrc:
"http://img.b2bpic.net/free-photo/female-medical-assistant-performs-posture-assessment-old-man_482257-122793.jpg", imageAlt: "Chronic disease management patient monitoring"},
{
imageSrc:
"http://img.b2bpic.net/free-photo/medical-team-doctor-s-office_23-2148168386.jpg", imageAlt: "Healthcare provider reviewing patient data"},
],
},
{
title: "Mental Health Support", description:
"Compassionate counseling and psychiatric services in a non-judgmental environment", icon: Brain,
mediaItems: [
{
imageSrc:
"http://img.b2bpic.net/free-photo/psychological-therapy-support-group-meeting_23-2151044463.jpg", imageAlt: "Counseling office supportive therapeutic environment"},
{
imageSrc:
"http://img.b2bpic.net/free-photo/sad-man-crying-while-talking-about-his-issues-group-therapy_637285-10013.jpg", imageAlt: "Supportive care therapeutic relationship trust"},
],
},
{
title: "Weight Management", description:
"Personalized nutrition and fitness plans with ongoing support and monitoring", icon: Activity,
mediaItems: [
{
imageSrc:
"http://img.b2bpic.net/free-photo/group-young-people-working-together-office_23-2148461532.jpg", imageAlt: "Nutritionist consultation weight management planning"},
{
imageSrc:
"http://img.b2bpic.net/free-photo/sports-talk-gym_1098-22204.jpg", imageAlt: "Fitness wellness coaching exercise motivation"},
],
},
{
title: "Telehealth Services", description:
"Convenient virtual appointments for routine care and follow-ups from home", icon: Video,
mediaItems: [
{
imageSrc:
"http://img.b2bpic.net/free-photo/closeup-happy-entrepreneur-having-video-conference-with-his-colleague_637285-6790.jpg", imageAlt: "Virtual healthcare consultation video appointment"},
{
imageSrc:
"http://img.b2bpic.net/free-photo/aged-man-woman-talking-dentist-online-video-call-asking-about-toothache-elder-people-using-video-teleconference-chat-with-orthodontist-digital-tablet-remote-telemedicine_482257-39014.jpg", imageAlt: "Patient using telehealth platform computer"},
],
},
]}
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
/>
</div>
<div id="about" data-section="about">
<SplitAbout
title="Why Choose First-Care Wellness"
@@ -120,34 +196,27 @@ export default function HomePage() {
tag="Our Commitment"
bulletPoints={[
{
title: "Experienced Providers",
description:
"Board-certified physicians and specialists with decades of combined experience",
icon: Award,
title: "Experienced Providers", description:
"Board-certified physicians and specialists with decades of combined experience", icon: Award,
},
{
title: "Patient-Centered Care",
description:
"We listen, understand your concerns, and develop treatment plans that work for your life",
icon: Users,
title: "Patient-Centered Care", description:
"We listen, understand your concerns, and develop treatment plans that work for your life", icon: Users,
},
{
title: "Accessible Healthcare",
description:
"Convenient scheduling, same-day appointments when available, and flexible hours",
icon: Clock,
title: "Accessible Healthcare", description:
"Convenient scheduling, same-day appointments when available, and flexible hours", icon: Clock,
},
{
title: "Preventative Focus",
description:
"We emphasize wellness and prevention to help you stay healthy long-term",
icon: Lightbulb,
title: "Preventative Focus", description:
"We emphasize wellness and prevention to help you stay healthy long-term", icon: Lightbulb,
},
]}
imageSrc="http://img.b2bpic.net/free-photo/team-doctors-looking-digital-tablet_107420-84759.jpg?_wi=1"
imageSrc="http://img.b2bpic.net/free-photo/team-doctors-looking-digital-tablet_107420-84759.jpg"
imageAlt="First-Care Wellness team in clinic"
imagePosition="right"
textboxLayout="default"
mediaAnimation="none"
useInvertedBackground={false}
/>
</div>
@@ -159,33 +228,17 @@ export default function HomePage() {
tag="Our Team"
members={[
{
id: "1",
name: "Dr. Sarah Chen",
role: "Internal Medicine",
imageSrc:
"http://img.b2bpic.net/free-photo/medical-assistant-preparing-physiotherapy-exercises_23-2149071493.jpg?_wi=1",
},
id: "1", name: "Dr. Sarah Chen", role: "Internal Medicine", imageSrc:
"http://img.b2bpic.net/free-photo/medical-assistant-preparing-physiotherapy-exercises_23-2149071493.jpg"},
{
id: "2",
name: "Dr. James Mitchell",
role: "Family Medicine",
imageSrc:
"http://img.b2bpic.net/free-photo/young-girl-pediatrician-consultation-with-her-doctor_23-2149187495.jpg?_wi=1",
},
id: "2", name: "Dr. James Mitchell", role: "Family Medicine", imageSrc:
"http://img.b2bpic.net/free-photo/young-girl-pediatrician-consultation-with-her-doctor_23-2149187495.jpg"},
{
id: "3",
name: "Dr. Patricia Rodriguez",
role: "Mental Health Specialist",
imageSrc:
"http://img.b2bpic.net/free-photo/troubled-woman-holding-cup_1098-3748.jpg?_wi=1",
},
id: "3", name: "Dr. Patricia Rodriguez", role: "Mental Health Specialist", imageSrc:
"http://img.b2bpic.net/free-photo/troubled-woman-holding-cup_1098-3748.jpg"},
{
id: "4",
name: "Dr. Michael Okonkwo",
role: "Preventative Care",
imageSrc:
"http://img.b2bpic.net/free-photo/close-up-health-worker_23-2149112572.jpg?_wi=1",
},
id: "4", name: "Dr. Michael Okonkwo", role: "Preventative Care", imageSrc:
"http://img.b2bpic.net/free-photo/close-up-health-worker_23-2149112572.jpg"},
]}
gridVariant="uniform-all-items-equal"
animationType="slide-up"
@@ -201,41 +254,21 @@ export default function HomePage() {
tag="Patient Reviews"
testimonials={[
{
id: "1",
name: "Jennifer Torres",
role: "Patient",
company: "Glen Burnie",
rating: 5,
id: "1", name: "Jennifer Torres", role: "Patient", company: "Glen Burnie", rating: 5,
imageSrc:
"http://img.b2bpic.net/free-photo/front-view-woman-testing-colours_23-2150538710.jpg?_wi=1",
},
"http://img.b2bpic.net/free-photo/front-view-woman-testing-colours_23-2150538710.jpg"},
{
id: "2",
name: "Marcus Johnson",
role: "Patient",
company: "Glen Burnie",
rating: 5,
id: "2", name: "Marcus Johnson", role: "Patient", company: "Glen Burnie", rating: 5,
imageSrc:
"http://img.b2bpic.net/free-photo/doctors-shaking-hands-with-patient-standing-corridor-hospital_1303-21239.jpg?_wi=1",
},
"http://img.b2bpic.net/free-photo/doctors-shaking-hands-with-patient-standing-corridor-hospital_1303-21239.jpg"},
{
id: "3",
name: "Lisa Goldstein",
role: "Patient",
company: "Glen Burnie",
rating: 5,
id: "3", name: "Lisa Goldstein", role: "Patient", company: "Glen Burnie", rating: 5,
imageSrc:
"http://img.b2bpic.net/free-photo/female-patient-smiling-while-talking-doctor_107420-73983.jpg?_wi=1",
},
"http://img.b2bpic.net/free-photo/female-patient-smiling-while-talking-doctor_107420-73983.jpg"},
{
id: "4",
name: "David Park",
role: "Patient",
company: "Glen Burnie",
rating: 5,
id: "4", name: "David Park", role: "Patient", company: "Glen Burnie", rating: 5,
imageSrc:
"http://img.b2bpic.net/free-photo/happy-senior-patient-his-doctor-looking-medical-test-results-touchpad-medical-appointment_637285-1467.jpg?_wi=1",
},
"http://img.b2bpic.net/free-photo/happy-senior-patient-his-doctor-looking-medical-test-results-touchpad-medical-appointment_637285-1467.jpg"},
]}
kpiItems={[
{ value: "98%", label: "Patient Satisfaction" },
@@ -254,15 +287,7 @@ export default function HomePage() {
description="We accept most major insurance plans and offer affordable care options for all"
tag="Insurance Partners"
names={[
"Blue Cross Blue Shield",
"Aetna",
"United Healthcare",
"Cigna",
"Medicare",
"Medicaid",
"Tricare",
"Humana",
]}
"Blue Cross Blue Shield", "Aetna", "United Healthcare", "Cigna", "Medicare", "Medicaid", "Tricare", "Humana"]}
textboxLayout="default"
useInvertedBackground={false}
speed={40}

View File

@@ -6,30 +6,27 @@ import TeamCardOne from "@/components/sections/team/TeamCardOne";
import TestimonialCardSixteen from "@/components/sections/testimonial/TestimonialCardSixteen";
import ContactSplitForm from "@/components/sections/contact/ContactSplitForm";
import FooterBase from "@/components/sections/footer/FooterBase";
import Link from "next/link";
export default function ProvidersPage() {
const navItems = [
{ name: "Home", id: "/" },
{ name: "Services", id: "services" },
{ name: "Providers", id: "providers" },
{ name: "About", id: "about" },
{ name: "Contact", id: "contact" },
{ name: "Services", id: "/services" },
{ name: "Providers", id: "/providers" },
{ name: "About", id: "/about" },
{ name: "Contact", id: "/contact" },
];
const footerColumns = [
{
title: "Services",
items: [
{ label: "Primary Care", href: "services" },
{ label: "Preventative Care", href: "services" },
{ label: "Mental Health", href: "services" },
{ label: "Telehealth", href: "services" },
title: "Services", items: [
{ label: "Primary Care", href: "#services" },
{ label: "Preventative Care", href: "#services" },
{ label: "Mental Health", href: "#services" },
{ label: "Telehealth", href: "#services" },
],
},
{
title: "Company",
items: [
title: "Company", items: [
{ label: "About Us", href: "/about" },
{ label: "Our Providers", href: "/providers" },
{ label: "Careers", href: "#" },
@@ -37,8 +34,7 @@ export default function ProvidersPage() {
],
},
{
title: "Contact",
items: [
title: "Contact", items: [
{ label: "(410) 555-0123", href: "tel:(410)555-0123" },
{ label: "Glen Burnie, MD", href: "#" },
{ label: "Book Appointment", href: "/contact" },
@@ -49,67 +45,31 @@ export default function ProvidersPage() {
const providers = [
{
id: "1",
name: "Dr. Sarah Chen",
role: "Internal Medicine",
imageSrc: "http://img.b2bpic.net/free-photo/medical-assistant-preparing-physiotherapy-exercises_23-2149071493.jpg?_wi=2",
},
id: "1", name: "Dr. Sarah Chen", role: "Internal Medicine", imageSrc: "http://img.b2bpic.net/free-photo/medical-assistant-preparing-physiotherapy-exercises_23-2149071493.jpg"},
{
id: "2",
name: "Dr. James Mitchell",
role: "Family Medicine",
imageSrc: "http://img.b2bpic.net/free-photo/young-girl-pediatrician-consultation-with-her-doctor_23-2149187495.jpg?_wi=2",
},
id: "2", name: "Dr. James Mitchell", role: "Family Medicine", imageSrc: "http://img.b2bpic.net/free-photo/young-girl-pediatrician-consultation-with-her-doctor_23-2149187495.jpg"},
{
id: "3",
name: "Dr. Patricia Rodriguez",
role: "Mental Health Specialist",
imageSrc: "http://img.b2bpic.net/free-photo/troubled-woman-holding-cup_1098-3748.jpg?_wi=2",
},
id: "3", name: "Dr. Patricia Rodriguez", role: "Mental Health Specialist", imageSrc: "http://img.b2bpic.net/free-photo/troubled-woman-holding-cup_1098-3748.jpg"},
{
id: "4",
name: "Dr. Michael Okonkwo",
role: "Preventative Care",
imageSrc: "http://img.b2bpic.net/free-photo/close-up-health-worker_23-2149112572.jpg?_wi=2",
},
id: "4", name: "Dr. Michael Okonkwo", role: "Preventative Care", imageSrc: "http://img.b2bpic.net/free-photo/close-up-health-worker_23-2149112572.jpg"},
];
const testimonials = [
{
id: "1",
name: "Jennifer Torres",
role: "Patient",
company: "Glen Burnie",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/front-view-woman-testing-colours_23-2150538710.jpg?_wi=2",
},
id: "1", name: "Jennifer Torres", role: "Patient", company: "Glen Burnie", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/front-view-woman-testing-colours_23-2150538710.jpg"},
{
id: "2",
name: "Marcus Johnson",
role: "Patient",
company: "Glen Burnie",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/doctors-shaking-hands-with-patient-standing-corridor-hospital_1303-21239.jpg?_wi=2",
},
id: "2", name: "Marcus Johnson", role: "Patient", company: "Glen Burnie", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/doctors-shaking-hands-with-patient-standing-corridor-hospital_1303-21239.jpg"},
{
id: "3",
name: "Lisa Goldstein",
role: "Patient",
company: "Glen Burnie",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/female-patient-smiling-while-talking-doctor_107420-73983.jpg?_wi=2",
},
id: "3", name: "Lisa Goldstein", role: "Patient", company: "Glen Burnie", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/female-patient-smiling-while-talking-doctor_107420-73983.jpg"},
{
id: "4",
name: "David Park",
role: "Patient",
company: "Glen Burnie",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/happy-senior-patient-his-doctor-looking-medical-test-results-touchpad-medical-appointment_637285-1467.jpg?_wi=2",
},
id: "4", name: "David Park", role: "Patient", company: "Glen Burnie", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/happy-senior-patient-his-doctor-looking-medical-test-results-touchpad-medical-appointment_637285-1467.jpg"},
];
const kpiItems = [
const kpiItems: [{ value: string; label: string }, { value: string; label: string }, { value: string; label: string }] = [
{ value: "98%", label: "Patient Satisfaction" },
{ value: "15+", label: "Years Experience" },
{ value: "5,000+", label: "Active Patients" },
@@ -169,38 +129,24 @@ export default function ProvidersPage() {
description="Schedule an appointment with one of our experienced providers today. We're here to support your wellness journey with compassionate, personalized care."
inputs={[
{
name: "name",
type: "text",
placeholder: "Full Name",
required: true,
name: "name", type: "text", placeholder: "Full Name", required: true,
},
{
name: "email",
type: "email",
placeholder: "Email Address",
required: true,
name: "email", type: "email", placeholder: "Email Address", required: true,
},
{
name: "phone",
type: "tel",
placeholder: "Phone Number",
required: true,
name: "phone", type: "tel", placeholder: "Phone Number", required: true,
},
{
name: "service",
type: "text",
placeholder: "Preferred Service",
required: false,
name: "service", type: "text", placeholder: "Preferred Service", required: false,
},
]}
textarea={{
name: "message",
placeholder: "Tell us about your healthcare needs...",
rows: 5,
name: "message", placeholder: "Tell us about your healthcare needs...", rows: 5,
required: false,
}}
useInvertedBackground={false}
imageSrc="http://img.b2bpic.net/free-photo/smiling-black-doctor-with-face-mask-talking-couple-medical-counselling-clinic_637285-8977.jpg?_wi=2"
imageSrc="http://img.b2bpic.net/free-photo/smiling-black-doctor-with-face-mask-talking-couple-medical-counselling-clinic_637285-8977.jpg"
imageAlt="First-Care Wellness clinic interior"
mediaAnimation="slide-up"
mediaPosition="right"