From c9ff573675ff3dc91ab87020afe3dfa5cd583378 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 5 Mar 2026 23:01:35 +0000 Subject: [PATCH] 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 6abf37e..742edff 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,56 +1,22 @@ import type { Metadata } from "next"; -import { DM_Sans } from "next/font/google"; import { Inter } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; - -const dmSans = DM_Sans({ - variable: "--font-dm-sans", - subsets: ["latin"], -}); const inter = Inter({ - variable: "--font-inter", - subsets: ["latin"], + variable: "--font-inter", subsets: ["latin"], }); export const metadata: Metadata = { - title: "Plumbing & Heating Services Ontario | David Laird's", - description: "Professional plumbing and heating services in Beaverton & Toronto. 5-star rated local experts. Emergency service available. Call (647) 555-PLUM today.", - keywords: "plumber Ontario, plumbing services, heating repair, emergency plumber, local plumber", - robots: { - index: true, - follow: true, - }, - openGraph: { - title: "Trusted Plumbing & Heating Services | David Laird's", - description: "Professional plumbing solutions from experienced local experts in Ontario. 5-star rated service.", - siteName: "David Laird's Plumbing & Heating Inc.", - type: "website", - url: "https://davidlairdplumbing.com", - }, - twitter: { - card: "summary_large_image", - title: "Trusted Plumbing Services in Ontario", - description: "Professional plumbing & heating repairs. Call for emergency service.", - }, -}; + title: "David Laird's Plumbing & Heating", description: "Professional plumbing and heating services in Ontario"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}