From a739fff6ef382089778ec632024d2203be9e125e Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 19 Mar 2026 15:26:18 +0000 Subject: [PATCH 1/4] Update src/app/contact/page.tsx --- src/app/contact/page.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index 913be41..56932c1 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -119,7 +119,7 @@ export default function ContactPage() { content: "We offer comprehensive initial consultations. Contact us to learn about our consultation options and fees." } ]} - imageSrc="http://img.b2bpic.net/free-photo/doctor-talks-patient-hospital-room_482257-62916.jpg" + imageSrc="http://img.b2bpic.net/free-photo/doctor-talks-patient-hospital-room_482257-62916.jpg?_wi=2" imageAlt="Welcoming dental office consultation room" mediaAnimation="slide-up" mediaPosition="right" From c359edda495bf1067a7c03c16954ed6c9ba9fc22 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 19 Mar 2026 15:26:18 +0000 Subject: [PATCH 2/4] Update src/app/layout.tsx --- src/app/layout.tsx | 47 ++++++++++++++++++++++++++++++++++++++-------- 1 file changed, 39 insertions(+), 8 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 0d09ce2..f0a8a33 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,24 +1,53 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { Figtree } 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 { Figtree } from "next/font/google"; +const halant = Halant({ + variable: "--font-halant", + subsets: ["latin"], + weight: ["300", "400", "500", "600", "700"], +}); - -export const metadata: Metadata = { - title: "Webild components 2", - description: "Generated by create next app", -}; +const inter = Inter({ + variable: "--font-inter", + subsets: ["latin"], +}); const figtree = Figtree({ variable: "--font-figtree", subsets: ["latin"], }); +export const metadata: Metadata = { + title: "Jennifer A. Sylvia, D.M.D. | Gentle Dental Care in West Harrison", + description: "Experience compassionate dental care from Dr. Jennifer A. Sylvia in West Harrison, NY. Trusted by families for general dentistry, teeth whitening, and preventive care. 4.3★ rated. Book your appointment today.", + keywords: "dentist West Harrison NY, dental care, Dr. Jennifer Sylvia, gentle dentistry, family dentist, teeth cleaning, cosmetic dentistry, preventive care", + openGraph: { + title: "Jennifer A. Sylvia, D.M.D. - Your Trusted Dentist in West Harrison", + description: "Compassionate dental care for the whole family. Experience gentle, professional dentistry in a welcoming environment.", + url: "https://jenniferasyldiad.dental", + siteName: "Jennifer A. Sylvia, D.M.D.", + images: [ + { + url: "http://img.b2bpic.net/free-photo/female-dentist-treats-patients-teeth-stomatologist-working-with-professional-equipment_169016-67020.jpg", + alt: "Modern dental office" + } + ], + type: "website" + }, + twitter: { + card: "summary_large_image", + title: "Jennifer A. Sylvia, D.M.D. - Gentle Dental Care", + description: "Your trusted dentist in West Harrison. Compassionate, professional dental care for the entire family.", + images: ["http://img.b2bpic.net/free-photo/female-dentist-treats-patients-teeth-stomatologist-working-with-professional-equipment_169016-67020.jpg"] + } +}; + export default function RootLayout({ children, }: Readonly<{ @@ -27,7 +56,9 @@ export default function RootLayout({ return ( - + {children}