From 6a1ccd3adc7cec3ffbcc42af4a3a1e80c0b77fdc Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 5 Mar 2026 02:53:06 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 41 ++++++++++++----------------------------- 1 file changed, 12 insertions(+), 29 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 9ebded6..92d884b 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,44 +1,28 @@ import type { Metadata } from "next"; -import { Mulish } from "next/font/google"; -import { Inter } 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 mulish = Mulish({ - variable: "--font-mulish", subsets: ["latin"], +const geist = Geist({ + variable: "--font-geist-sans", subsets: ["latin"], }); -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], +const geistMono = Geist_Mono({ + variable: "--font-geist-mono", subsets: ["latin"], }); export const metadata: Metadata = { - title: "Emergency Plumber Norwich | 24 Hour Service | Norfolk Plumbing", description: "24/7 emergency plumber in Norwich. Fast, reliable plumbing services including blocked drains, leak repairs & tap replacement. Call 07950 471139 now.", keywords: "emergency plumber Norwich, 24 hour plumber Norwich, blocked drain Norwich, plumbing services Norfolk, leak repair Norwich", metadataBase: new URL("https://norfolkplumbing.co.uk"), - alternates: { - canonical: "https://norfolkplumbing.co.uk"}, - openGraph: { - title: "Emergency Plumber Norwich | 24 Hour Plumbing Service", description: "Fast, reliable emergency plumbing across Norwich and Norfolk. Available 24/7. Call 07950 471139.", url: "https://norfolkplumbing.co.uk", siteName: "Norfolk Plumbing", type: "website"}, - robots: { - index: true, - follow: true, - }, -}; + title: "Create Next App", description: "Generated by create next app"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + + {children} +