From fd622a5f72b2c3c642cd47cf2a12ce88fe23e647 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 7 Mar 2026 20:50:34 +0000 Subject: [PATCH] Switch to version 2: modified src/app/layout.tsx --- src/app/layout.tsx | 1417 +------------------------------------------- 1 file changed, 7 insertions(+), 1410 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index ee8052c..e492388 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1425 +1,23 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Archivo } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; - -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); const inter = Inter({ variable: "--font-inter", subsets: ["latin"], }); -const archivo = Archivo({ - variable: "--font-archivo", subsets: ["latin"], -}); - export const metadata: Metadata = { - title: "Expert Dental Care | Professional Dentist Services", description: "Premium dental clinic offering teeth cleaning, implants, whitening, and cosmetic dentistry. Experienced dentists with advanced equipment. Book your appointment today!", keywords: "dental clinic, dentist, teeth cleaning, dental implants, teeth whitening, root canal, orthodontics, cosmetic dentistry", metadataBase: new URL("https://expertdentalcare.com"), - alternates: { - canonical: "https://expertdentalcare.com" - }, - openGraph: { - title: "Expert Dental Care | Your Perfect Smile", description: "Professional dental services with experienced dentists and advanced technology. Schedule your appointment now.", type: "website", siteName: "EXPERT DENTAL CARE", url: "https://expertdentalcare.com", images: [ - { - url: "http://img.b2bpic.net/free-photo/cheerful-dark-skinned-male-with-afro-hairstyle-keeps-hand-head-laughs-as-has-fun_273609-8514.jpg", alt: "Expert Dental Care - Beautiful Smile" - } - ] - }, - twitter: { - card: "summary_large_image", title: "Expert Dental Care", description: "Your trusted dental clinic for comprehensive oral health care", images: ["http://img.b2bpic.net/free-photo/cheerful-dark-skinned-male-with-afro-hairstyle-keeps-hand-head-laughs-as-has-fun_273609-8514.jpg"] - }, - robots: { - index: true, - follow: true - } -}; + title: "Expert Dental Care - Professional Dental Services", description: "Expert dental care with 20+ years of experience. Comprehensive dental treatments including teeth cleaning, implants, whitening, and more."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -