From e1446bd6f864a0fc3941bea57071a48587307286 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 12 Mar 2026 21:42:36 +0000 Subject: [PATCH 1/3] Update src/app/booking/page.tsx --- src/app/booking/page.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/booking/page.tsx b/src/app/booking/page.tsx index f3479fb..aefbb28 100644 --- a/src/app/booking/page.tsx +++ b/src/app/booking/page.tsx @@ -124,7 +124,7 @@ export default function BookingPage() { required: false, }} useInvertedBackground={false} - imageSrc="http://img.b2bpic.net/free-photo/computer-screen-showing-financial-information-office-workspace_53876-16526.jpg" + imageSrc="http://img.b2bpic.net/free-photo/computer-screen-showing-financial-information-office-workspace_53876-16526.jpg?_wi=2" imageAlt="Book your dental appointment" mediaAnimation="slide-up" mediaPosition="right" -- 2.49.1 From c139339544e12fc47d9a44049112aea919613aa1 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 12 Mar 2026 21:42:36 +0000 Subject: [PATCH 2/3] Update src/app/layout.tsx --- src/app/layout.tsx | 55 +++++++++++++++++++++++++++++++++++++++------- 1 file changed, 47 insertions(+), 8 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 9b64f44..ba75e5e 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,18 +1,22 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { Inter_Tight } 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 { Inter_Tight } 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 interTight = Inter_Tight({ variable: "--font-inter-tight", @@ -20,6 +24,39 @@ const interTight = Inter_Tight({ weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], }); +export const metadata: Metadata = { + title: "AJ Dental Clinic | Professional Dental Care Services", + description: "AJ Dental Clinic offers comprehensive dental care including cleanings, whitening, implants, and orthodontics. Book your appointment today.", + keywords: "dental clinic, dentist, dental services, teeth cleaning, whitening, implants, orthodontics, emergency dental", + metadataBase: new URL("https://ajdentalclinic.com"), + alternates: { + canonical: "https://ajdentalclinic.com", + }, + openGraph: { + title: "AJ Dental Clinic | Professional Dental Care", + description: "Your trusted partner for comprehensive dental care with modern solutions and compassionate treatment.", + url: "https://ajdentalclinic.com", + siteName: "AJ Dental Clinic", + type: "website", + images: [ + { + url: "http://img.b2bpic.net/free-photo/dentist-examining-female-patient_107420-65393.jpg", + alt: "AJ Dental Clinic - Modern dental office", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "AJ Dental Clinic - Professional Dental Care", + description: "Your trusted partner for comprehensive dental care with modern solutions and compassionate treatment.", + images: ["http://img.b2bpic.net/free-photo/dentist-examining-female-patient_107420-65393.jpg"], + }, + robots: { + index: true, + follow: true, + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -28,7 +65,9 @@ export default function RootLayout({ return ( - + {children}