From 81a5ec80ac0902b02205caae5d262b39003d88d2 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 12 Mar 2026 00:09:12 +0000 Subject: [PATCH 1/6] Update src/app/about/page.tsx --- src/app/about/page.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index 1242359..242008c 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -94,13 +94,13 @@ export default function AboutPage() { id: 1, title: "Patient Comfort First", description: "We understand that many patients experience anxiety in dental settings. Our gentle approach and relaxing environment ensure every visit is as comfortable as possible.", - imageSrc: "http://img.b2bpic.net/free-photo/patients-stomatology-reception-waiting-line-taking-filling-form-doctor-examining-senior-man-discussing-teeh-healthcare_482257-4850.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/patients-stomatology-reception-waiting-line-taking-filling-form-doctor-examining-senior-man-discussing-teeh-healthcare_482257-4850.jpg?_wi=2", }, { id: 2, title: "Advanced Technology", description: "We invest in the latest dental technologies and techniques to provide the most efficient, effective, and minimally invasive treatments available.", - imageSrc: "http://img.b2bpic.net/free-photo/close-up-dentist-instruments_23-2151053280.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/close-up-dentist-instruments_23-2151053280.jpg?_wi=2", }, { id: 3, -- 2.49.1 From e6d315b3efecb1bfb6952a2f07351d371198b48f Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 12 Mar 2026 00:09:12 +0000 Subject: [PATCH 2/6] 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 c6d75d9..b1cd5da 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -84,7 +84,7 @@ export default function ContactPage() { Date: Thu, 12 Mar 2026 00:09:13 +0000 Subject: [PATCH 3/6] Update src/app/layout.tsx --- src/app/layout.tsx | 50 ++++++++++++++++++++++++++++++++++++++-------- 1 file changed, 42 insertions(+), 8 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index da5b4f2..9f555e6 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,24 +1,56 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { Raleway } 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 { Raleway } 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 raleway = Raleway({ variable: "--font-raleway", subsets: ["latin"], }); +export const metadata: Metadata = { + title: "Stratford Family Dental | Compassionate Dental Care in Bel Air, MD", + description: "Premium family dental care in Bel Air, Maryland. Experience personalized, comfortable dentistry from our caring team. Schedule your appointment today.", + keywords: "family dentistry, dental care, Bel Air Maryland, cosmetic dentistry, emergency dental, teeth cleaning, dentures", + openGraph: { + title: "Stratford Family Dental | Expert Dental Care", + description: "Compassionate dental care for your whole family. Modern treatments in a welcoming environment.", + siteName: "Stratford Family Dental", + type: "website", + images: [ + { + url: "http://img.b2bpic.net/free-photo/patients-stomatology-reception-waiting-line-taking-filling-form-doctor-examining-senior-man-discussing-teeh-healthcare_482257-4850.jpg", + alt: "Stratford Family Dental Office" + } + ] + }, + twitter: { + card: "summary_large_image", + title: "Stratford Family Dental | Bel Air, MD", + description: "Expert dental care with a personal touch. Schedule your appointment today.", + images: ["http://img.b2bpic.net/free-photo/patients-stomatology-reception-waiting-line-taking-filling-form-doctor-examining-senior-man-discussing-teeh-healthcare_482257-4850.jpg"] + }, + robots: { + index: true, + follow: true + } +}; + export default function RootLayout({ children, }: Readonly<{ @@ -27,7 +59,9 @@ export default function RootLayout({ return ( - + {children}