Merge version_1 into main #1
@@ -44,7 +44,7 @@ export default function AboutPage() {
|
||||
title="About Ashley Wilkinson, PA-C"
|
||||
description="Ashley Wilkinson PA-C is dedicated to providing compassionate, comprehensive healthcare to the Liberty Lake and Spokane Valley communities. With extensive experience in primary care and patient wellness, Ashley brings expertise, compassion, and a genuine commitment to helping each patient achieve their health goals."
|
||||
tag="Provider Profile"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/nurses-getting-ready-work-day_23-2149309983.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/nurses-getting-ready-work-day_23-2149309983.jpg?_wi=2"
|
||||
imageAlt="Ashley Wilkinson PA-C professional portrait"
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
@@ -55,7 +55,7 @@ export default function AboutPage() {
|
||||
title="Background & Education"
|
||||
description="Ashley completed her Physician Assistant studies at an accredited PA program, earning her PA-C certification. She maintains current certifications and regularly pursues continuing education to stay at the forefront of medical knowledge and best practices. Her commitment to lifelong learning ensures her patients receive care based on the latest evidence-based medical guidelines and clinical advances."
|
||||
tag="Education"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/smiling-doctor-nurse-with-digital-tablet_107420-84817.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/smiling-doctor-nurse-with-digital-tablet_107420-84817.jpg?_wi=2"
|
||||
imageAlt="Medical professional education"
|
||||
useInvertedBackground={true}
|
||||
/>
|
||||
@@ -66,7 +66,7 @@ export default function AboutPage() {
|
||||
title="Patient-Centered Approach"
|
||||
description="Ashley believes that quality healthcare begins with listening to patients and understanding their individual health needs, concerns, and goals. She takes time to explain diagnoses and treatment options, ensuring patients are informed partners in their care decisions. By building lasting relationships with her patients, Ashley creates an environment of trust where comprehensive, compassionate care can flourish."
|
||||
tag="Our Philosophy"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/medium-shot-patient-doctor-chatting_23-2149856220.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/medium-shot-patient-doctor-chatting_23-2149856220.jpg?_wi=2"
|
||||
imageAlt="Patient-centered healthcare approach"
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
|
||||
@@ -44,7 +44,7 @@ export default function ContactPage() {
|
||||
title="Get In Touch With Us"
|
||||
description="Have questions or ready to schedule your appointment? Contact Ashley Wilkinson PA-C in Liberty Lake. We're committed to providing prompt, professional responses to all inquiries and look forward to welcoming you to our clinic."
|
||||
tag="Contact Information"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/nurses-getting-ready-work-day_23-2149309983.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/nurses-getting-ready-work-day_23-2149309983.jpg?_wi=3"
|
||||
imageAlt="Contact our healthcare provider"
|
||||
buttons={[
|
||||
{ text: "Schedule Now", href: "/schedule" },
|
||||
|
||||
@@ -1,28 +1,54 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Halant } from "next/font/google";
|
||||
import { Mulish } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import "./globals.css";
|
||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
import { getVisualEditScript } from "@/utils/visual-edit-script";
|
||||
import { Mulish } from "next/font/google";
|
||||
|
||||
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Webild components 2",
|
||||
description: "Generated by create next app",
|
||||
};
|
||||
|
||||
const mulish = Mulish({
|
||||
variable: "--font-mulish",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
|
||||
const inter = Inter({
|
||||
variable: "--font-inter",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Ashley Wilkinson PA-C - Primary Care Liberty Lake, WA",
|
||||
description: "Compassionate primary care and health services in Liberty Lake, Washington. Schedule an appointment with Ashley Wilkinson PA-C for personalized medical care.",
|
||||
keywords: "primary care Liberty Lake, medical clinic Liberty Lake WA, healthcare provider Liberty Lake, physician assistant Liberty Lake, family medicine Liberty Lake, preventive care",
|
||||
metadataBase: new URL("https://ashleywilkinsonpac.com"),
|
||||
alternates: {
|
||||
canonical: "https://ashleywilkinsonpac.com",
|
||||
},
|
||||
robots: {
|
||||
index: true,
|
||||
follow: true,
|
||||
},
|
||||
openGraph: {
|
||||
title: "Ashley Wilkinson PA-C - Medical Care Liberty Lake",
|
||||
description: "Professional, compassionate healthcare for Liberty Lake and Spokane Valley communities",
|
||||
url: "https://ashleywilkinsonpac.com",
|
||||
siteName: "Ashley Wilkinson PA-C Medical Care",
|
||||
type: "website",
|
||||
images: [
|
||||
{
|
||||
url: "http://img.b2bpic.net/free-photo/nobody-empty-hospital-reception-waiting-area-medical-facility-with-healthcare-service-cure-patients-with-disease-no-people-clinic-lobby-waiting-room-covid-19-pandemic_482257-46768.jpg",
|
||||
alt: "Ashley Wilkinson PA-C Medical Clinic",
|
||||
},
|
||||
],
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image",
|
||||
title: "Ashley Wilkinson PA-C - Primary Care Liberty Lake",
|
||||
description: "Compassionate medical care in Liberty Lake, WA. Schedule your appointment today.",
|
||||
images: ["http://img.b2bpic.net/free-photo/nobody-empty-hospital-reception-waiting-area-medical-facility-with-healthcare-service-cure-patients-with-disease-no-people-clinic-lobby-waiting-room-covid-19-pandemic_482257-46768.jpg"],
|
||||
},
|
||||
};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
@@ -31,7 +57,9 @@ export default function RootLayout({
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body className={`${mulish.variable} ${inter.variable} antialiased`}>
|
||||
<body
|
||||
className={`${mulish.variable} ${inter.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
<script
|
||||
@@ -43,4 +71,4 @@ export default function RootLayout({
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -56,7 +56,7 @@ export default function HomePage() {
|
||||
href: "tel:(509)928-6700",
|
||||
},
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/nobody-empty-hospital-reception-waiting-area-medical-facility-with-healthcare-service-cure-patients-with-disease-no-people-clinic-lobby-waiting-room-covid-19-pandemic_482257-46768.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/nobody-empty-hospital-reception-waiting-area-medical-facility-with-healthcare-service-cure-patients-with-disease-no-people-clinic-lobby-waiting-room-covid-19-pandemic_482257-46768.jpg?_wi=1"
|
||||
imageAlt="Professional medical clinic environment"
|
||||
showDimOverlay={true}
|
||||
buttonAnimation="slide-up"
|
||||
@@ -68,7 +68,7 @@ export default function HomePage() {
|
||||
title="Meet Ashley Wilkinson, PA-C"
|
||||
description="With years of dedicated experience in primary care and patient wellness, Ashley Wilkinson PA-C is committed to providing compassionate, personalized healthcare. Her patient-centered approach emphasizes preventive care, comprehensive evaluations, and building lasting relationships with each patient. She specializes in primary care management, health screenings, and chronic condition care."
|
||||
tag="Provider Profile"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/nurses-getting-ready-work-day_23-2149309983.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/nurses-getting-ready-work-day_23-2149309983.jpg?_wi=1"
|
||||
imageAlt="Ashley Wilkinson PA-C professional portrait"
|
||||
buttons={[
|
||||
{
|
||||
@@ -88,42 +88,42 @@ export default function HomePage() {
|
||||
{
|
||||
title: "Primary Care",
|
||||
description: "Ongoing preventive and acute medical care for all ages",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/elderly-person-being-taken-care-by-female-caretaker_23-2150216386.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/elderly-person-being-taken-care-by-female-caretaker_23-2150216386.jpg?_wi=1",
|
||||
imageAlt: "Primary care medical consultation",
|
||||
buttonIcon: ArrowRight,
|
||||
},
|
||||
{
|
||||
title: "Preventive Health Visits",
|
||||
description: "Annual wellness exams and preventive health screenings",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/serious-executives-listening-colleagues-idea_1262-7302.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/serious-executives-listening-colleagues-idea_1262-7302.jpg?_wi=1",
|
||||
imageAlt: "Preventive health screening",
|
||||
buttonIcon: ArrowRight,
|
||||
},
|
||||
{
|
||||
title: "Health Screenings",
|
||||
description: "Comprehensive physical exams and health risk assessments",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/pediatrician-giving-bottle-pills-parent-small-kid-with-illness-after-checkup-examination-medic-giving-prescription-medicine-flask-woman-child-helping-with-recovery_482257-40747.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/pediatrician-giving-bottle-pills-parent-small-kid-with-illness-after-checkup-examination-medic-giving-prescription-medicine-flask-woman-child-helping-with-recovery_482257-40747.jpg?_wi=1",
|
||||
imageAlt: "Health screening service",
|
||||
buttonIcon: ArrowRight,
|
||||
},
|
||||
{
|
||||
title: "Chronic Condition Management",
|
||||
description: "Ongoing care and management of chronic health conditions",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/medic-gives-bad-concerning-diagnosis-elderly-patient-checkup_482257-126481.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/medic-gives-bad-concerning-diagnosis-elderly-patient-checkup_482257-126481.jpg?_wi=1",
|
||||
imageAlt: "Chronic condition management",
|
||||
buttonIcon: ArrowRight,
|
||||
},
|
||||
{
|
||||
title: "General Medical Consultations",
|
||||
description: "Expert consultations for health concerns and medical guidance",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/medic-doing-signature-checkup-papers-give-prescription-medicine-patient-woman-doctor-signing-documents-after-healthcare-consultation-giving-treatment-senior-man-with-disease_482257-38502.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/medic-doing-signature-checkup-papers-give-prescription-medicine-patient-woman-doctor-signing-documents-after-healthcare-consultation-giving-treatment-senior-man-with-disease_482257-38502.jpg?_wi=1",
|
||||
imageAlt: "Medical consultation",
|
||||
buttonIcon: ArrowRight,
|
||||
},
|
||||
{
|
||||
title: "Patient Education",
|
||||
description: "Personalized health education and wellness guidance",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/african-american-general-practitioner-having-consultations-with-couple-medical-clinic_637285-1156.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/african-american-general-practitioner-having-consultations-with-couple-medical-clinic_637285-1156.jpg?_wi=1",
|
||||
imageAlt: "Patient health education",
|
||||
buttonIcon: ArrowRight,
|
||||
},
|
||||
@@ -143,28 +143,28 @@ export default function HomePage() {
|
||||
{
|
||||
title: "Personalized Care",
|
||||
description: "Every patient receives individualized attention and customized treatment plans",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-patient-doctor-chatting_23-2149856220.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-patient-doctor-chatting_23-2149856220.jpg?_wi=1",
|
||||
imageAlt: "Personalized medical care",
|
||||
buttonIcon: Heart,
|
||||
},
|
||||
{
|
||||
title: "Experienced Provider",
|
||||
description: "Years of clinical expertise and commitment to ongoing professional development",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/smiling-doctor-nurse-with-digital-tablet_107420-84817.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/smiling-doctor-nurse-with-digital-tablet_107420-84817.jpg?_wi=1",
|
||||
imageAlt: "Experienced medical professional",
|
||||
buttonIcon: Award,
|
||||
},
|
||||
{
|
||||
title: "Comfortable Environment",
|
||||
description: "Clean, modern clinic designed for patient comfort and privacy",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/hr-specialist-doing-handshake-with-man-after-looking-his-resume_482257-122917.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/hr-specialist-doing-handshake-with-man-after-looking-his-resume_482257-122917.jpg?_wi=1",
|
||||
imageAlt: "Comfortable clinic environment",
|
||||
buttonIcon: Home,
|
||||
},
|
||||
{
|
||||
title: "Convenient Location",
|
||||
description: "Easily accessible Liberty Lake location serving the Spokane Valley community",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/boy-with-paper-sheet-with-quarantine_23-2148544585.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/boy-with-paper-sheet-with-quarantine_23-2148544585.jpg?_wi=1",
|
||||
imageAlt: "Liberty Lake medical clinic location",
|
||||
buttonIcon: MapPin,
|
||||
},
|
||||
|
||||
@@ -48,7 +48,7 @@ export default function ServicesPage() {
|
||||
{ text: "Schedule Appointment", href: "/schedule" },
|
||||
{ text: "Call Office", href: "tel:(509)928-6700" },
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/nobody-empty-hospital-reception-waiting-area-medical-facility-with-healthcare-service-cure-patients-with-disease-no-people-clinic-lobby-waiting-room-covid-19-pandemic_482257-46768.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/nobody-empty-hospital-reception-waiting-area-medical-facility-with-healthcare-service-cure-patients-with-disease-no-people-clinic-lobby-waiting-room-covid-19-pandemic_482257-46768.jpg?_wi=2"
|
||||
imageAlt="Professional medical clinic environment"
|
||||
showDimOverlay={true}
|
||||
buttonAnimation="slide-up"
|
||||
@@ -61,42 +61,42 @@ export default function ServicesPage() {
|
||||
{
|
||||
title: "Primary Care",
|
||||
description: "Ongoing preventive and acute medical care for all ages",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/elderly-person-being-taken-care-by-female-caretaker_23-2150216386.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/elderly-person-being-taken-care-by-female-caretaker_23-2150216386.jpg?_wi=2",
|
||||
imageAlt: "Primary care medical consultation",
|
||||
buttonIcon: ArrowRight,
|
||||
},
|
||||
{
|
||||
title: "Preventive Health Visits",
|
||||
description: "Annual wellness exams and preventive health screenings",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/serious-executives-listening-colleagues-idea_1262-7302.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/serious-executives-listening-colleagues-idea_1262-7302.jpg?_wi=2",
|
||||
imageAlt: "Preventive health screening",
|
||||
buttonIcon: ArrowRight,
|
||||
},
|
||||
{
|
||||
title: "Health Screenings",
|
||||
description: "Comprehensive physical exams and health risk assessments",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/pediatrician-giving-bottle-pills-parent-small-kid-with-illness-after-checkup-examination-medic-giving-prescription-medicine-flask-woman-child-helping-with-recovery_482257-40747.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/pediatrician-giving-bottle-pills-parent-small-kid-with-illness-after-checkup-examination-medic-giving-prescription-medicine-flask-woman-child-helping-with-recovery_482257-40747.jpg?_wi=2",
|
||||
imageAlt: "Health screening service",
|
||||
buttonIcon: ArrowRight,
|
||||
},
|
||||
{
|
||||
title: "Chronic Condition Management",
|
||||
description: "Ongoing care and management of chronic health conditions",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/medic-gives-bad-concerning-diagnosis-elderly-patient-checkup_482257-126481.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/medic-gives-bad-concerning-diagnosis-elderly-patient-checkup_482257-126481.jpg?_wi=2",
|
||||
imageAlt: "Chronic condition management",
|
||||
buttonIcon: ArrowRight,
|
||||
},
|
||||
{
|
||||
title: "General Medical Consultations",
|
||||
description: "Expert consultations for health concerns and medical guidance",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/medic-doing-signature-checkup-papers-give-prescription-medicine-patient-woman-doctor-signing-documents-after-healthcare-consultation-giving-treatment-senior-man-with-disease_482257-38502.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/medic-doing-signature-checkup-papers-give-prescription-medicine-patient-woman-doctor-signing-documents-after-healthcare-consultation-giving-treatment-senior-man-with-disease_482257-38502.jpg?_wi=2",
|
||||
imageAlt: "Medical consultation",
|
||||
buttonIcon: ArrowRight,
|
||||
},
|
||||
{
|
||||
title: "Patient Education",
|
||||
description: "Personalized health education and wellness guidance",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/african-american-general-practitioner-having-consultations-with-couple-medical-clinic_637285-1156.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/african-american-general-practitioner-having-consultations-with-couple-medical-clinic_637285-1156.jpg?_wi=2",
|
||||
imageAlt: "Patient health education",
|
||||
buttonIcon: ArrowRight,
|
||||
},
|
||||
@@ -116,28 +116,28 @@ export default function ServicesPage() {
|
||||
{
|
||||
title: "Personalized Care",
|
||||
description: "Every patient receives individualized attention and customized treatment plans",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-patient-doctor-chatting_23-2149856220.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-patient-doctor-chatting_23-2149856220.jpg?_wi=3",
|
||||
imageAlt: "Personalized medical care",
|
||||
buttonIcon: Heart,
|
||||
},
|
||||
{
|
||||
title: "Experienced Provider",
|
||||
description: "Years of clinical expertise and commitment to ongoing professional development",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/smiling-doctor-nurse-with-digital-tablet_107420-84817.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/smiling-doctor-nurse-with-digital-tablet_107420-84817.jpg?_wi=3",
|
||||
imageAlt: "Experienced medical professional",
|
||||
buttonIcon: Award,
|
||||
},
|
||||
{
|
||||
title: "Comfortable Environment",
|
||||
description: "Clean, modern clinic designed for patient comfort and privacy",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/hr-specialist-doing-handshake-with-man-after-looking-his-resume_482257-122917.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/hr-specialist-doing-handshake-with-man-after-looking-his-resume_482257-122917.jpg?_wi=2",
|
||||
imageAlt: "Comfortable clinic environment",
|
||||
buttonIcon: Home,
|
||||
},
|
||||
{
|
||||
title: "Convenient Location",
|
||||
description: "Easily accessible Liberty Lake location serving the Spokane Valley community",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/boy-with-paper-sheet-with-quarantine_23-2148544585.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/boy-with-paper-sheet-with-quarantine_23-2148544585.jpg?_wi=2",
|
||||
imageAlt: "Liberty Lake medical clinic location",
|
||||
buttonIcon: MapPin,
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user