From d6f515cc2b0d160cb5e8520ae7601e1f173db83b Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 7 Mar 2026 22:13:14 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 1421 +------------------------------------------- 1 file changed, 11 insertions(+), 1410 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index ee8052c..74214f9 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1425 +1,27 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Archivo } from "next/font/google"; +import { Geist, Geist_Mono } 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 geist = Geist({ + variable: "--font-geist-sans", subsets: ["latin"], }); -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const archivo = Archivo({ - variable: "--font-archivo", subsets: ["latin"], +const geistMono = Geist_Mono({ + variable: "--font-geist-mono", 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", description: "Expert Dental Care provides comprehensive dental treatments with experienced dentists and advanced technology."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -