diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index 382f629..613a1a7 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -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} /> diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index f6a290c..79e2dd8 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -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" }, diff --git a/src/app/layout.tsx b/src/app/layout.tsx index a02c995..04c5d40 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -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 ( - + {children}