From 0e3eb3605d483ebaedefd4ecd01e8b54c2121afc Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 4 Mar 2026 09:02:42 +0000 Subject: [PATCH 1/3] Update src/app/layout.tsx --- src/app/layout.tsx | 49 +++++----------------------------------------- 1 file changed, 5 insertions(+), 44 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 7e51e3b..aba24fa 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,60 +1,22 @@ import type { Metadata } from "next"; -import { Roboto } from "next/font/google"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; - -const roboto = Roboto({ - variable: "--font-roboto", subsets: ["latin"], - weight: ["100", "300", "400", "500", "700", "900"], -}); - -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); const inter = Inter({ variable: "--font-inter", subsets: ["latin"], }); export const metadata: Metadata = { - title: "Eziam Dental - Premium Dental Care in Pretoria | 5★ Rated", description: "Exceptional dental care in Pretoria with 5-star reviews from 245+ patients. Comprehensive services from cleanings to restorative dentistry at Willows Crossing.", keywords: "dental care Pretoria, dentist Pretoria, dental clinic, teeth cleaning, smile makeover, cosmetic dentistry", metadataBase: new URL("https://eziamdental.co.za"), - alternates: { - canonical: "https://eziamdental.co.za" - }, - openGraph: { - title: "Eziam Dental - Premium Dental Care in Pretoria", description: "Exceptional dental care combining advanced techniques with a gentle touch. 5★ rated by 245+ satisfied patients.", url: "https://eziamdental.co.za", siteName: "Eziam Dental", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/close-up-image-dentist-examining-female-s-teeth-dentistry_613910-11476.jpg", alt: "Eziam Dental - Premium Care in Pretoria" - } - ] - }, - twitter: { - card: "summary_large_image", title: "Eziam Dental - Pretoria's Premier Dental Practice", description: "5★ rated dental excellence. Book your appointment today.", images: ["http://img.b2bpic.net/free-photo/close-up-image-dentist-examining-female-s-teeth-dentistry_613910-11476.jpg"] - }, - robots: { - index: true, - follow: true - } -}; + title: "Eziam Dental | Premium Dental Care in Pretoria", description: "Experience exceptional dental care in Pretoria. Rated 5.0 by 245 verified patients. Comprehensive dental services at Willows Crossing Shopping Centre."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}