From b5f553f2aac4aff4408b2ecb36e7c5a1370be7a7 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 4 Mar 2026 12:46:46 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 47 ++++++---------------------------------------- 1 file changed, 6 insertions(+), 41 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 249a9ce..0f2ec05 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,54 +1,20 @@ import type { Metadata } from "next"; -import { Poppins } from "next/font/google"; import { Inter } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -const poppins = Poppins({ - variable: "--font-poppins", subsets: ["latin"], - weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Leyton Dental Surgery - Trusted Dentist in Leyton, London E10", description: "Professional dental care in Leyton, London. General, cosmetic, emergency dentistry & more. Book your appointment today. 229 High Road, E10 5QE.", keywords: "dentist Leyton, dental surgery London E10, teeth cleaning, dental implants, cosmetic dentistry, emergency dental care", metadataBase: new URL("https://www.leytondentalcare.co.uk/"), - alternates: { - canonical: "https://www.leytondentalcare.co.uk/" - }, - openGraph: { - title: "Leyton Dental Surgery - Your Smile is Our Priority", description: "Trusted dental care in Leyton, London. Schedule your appointment with experienced dentists today.", url: "https://www.leytondentalcare.co.uk/", siteName: "Leyton Dental Surgery", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/dentist-s-office-interior-with-modern-chair-special-dentisd-equipment-interior-stomatology-clinic_482257-11998.jpg", alt: "Leyton Dental Surgery - Modern dental clinic" - } - ] - }, - twitter: { - card: "summary_large_image", title: "Leyton Dental Surgery - Professional Dental Care", description: "Quality dental services in Leyton, London. Emergency & routine care available. Book now!", images: ["http://img.b2bpic.net/free-photo/dentist-s-office-interior-with-modern-chair-special-dentisd-equipment-interior-stomatology-clinic_482257-11998.jpg"] - }, - robots: { - index: true, - follow: true - } -}; + title: "Leyton Dental Surgery | Trusted Dental Care in Leyton, London", description: "Professional dental care in Leyton, London. General dentistry, cosmetic treatments, emergency appointments, and more. Book your appointment today."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}