From eb2a0a006b151b7e0237340c00298c398e78c27f Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 5 Mar 2026 16:54:31 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 41 ++++++----------------------------------- 1 file changed, 6 insertions(+), 35 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index e620e59..78b2342 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,48 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Public_Sans } 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 inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const publicSans = Public_Sans({ - variable: "--font-public-sans", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Professional Painting Services in Kemptville | W Painting & Sons", description: "Expert interior and exterior painting for homes and businesses in Kemptville, Ontario. Free estimates, professional results. Call (819) 775-7695 today.", keywords: "painting contractor Kemptville, interior painting, exterior painting, residential painting, commercial painting, North Grenville, Ottawa South", metadataBase: new URL("https://wpaintingandsons.com"), - alternates: { - canonical: "https://wpaintingandsons.com"}, - openGraph: { - title: "Professional Painting Services in Kemptville | W Painting & Sons", description: "Quality interior and exterior painting services for homes and businesses. Free estimates available.", url: "https://wpaintingandsons.com", siteName: "W Painting & Sons Inc", type: "website"}, - twitter: { - card: "summary_large_image", title: "Professional Painting Services in Kemptville | W Painting & Sons", description: "Expert painting contractor serving Kemptville and surrounding areas. Free estimates, professional results."}, -}; + title: "W Painting & Sons | Professional Painting Services in Kemptville", description: "Professional painting services for homes and businesses in Kemptville and surrounding areas. Quality interior and exterior painting with reliable, efficient service."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}