From 1efc75a679a9d6fdcf8d1b3f22672299ce78bee3 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 4 Mar 2026 06:48:51 +0000 Subject: [PATCH 1/4] Update src/app/layout.tsx --- src/app/layout.tsx | 40 ++++++++++------------------------------ 1 file changed, 10 insertions(+), 30 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 2f62ee9..116dc8f 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,42 +1,23 @@ import type { Metadata } from "next"; -import { Nunito_Sans } from "next/font/google"; +import { SF_Pro_Display } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -const nunitoSans = Nunito_Sans({ - variable: "--font-nunito-sans", - subsets: ["latin"], +const sfProDisplay = SF_Pro_Display({ + variable: "--font-sf-pro-display", subsets: ["latin"], + weight: ["300", "400", "500", "600", "700"], }); export const metadata: Metadata = { - title: "M&T Kelly Electrical - Geelong's Trusted Local Electrician", - description: "Owner-operated electrical services in Geelong. Residential, commercial, solar & emergency solutions. Free quotes, insured & registered.", - keywords: "electrician, Geelong, electrical services, solar, rewiring, switchboards, emergency", - openGraph: { - title: "M&T Kelly Electrical - Geelong Electrician", - description: "Professional electrical services for homes and businesses in Geelong. Domestic & commercial wiring specialist.", - siteName: "M&T Kelly Electrical", - type: "website", - }, - robots: { - index: true, - follow: true, - }, -}; + title: "M&T Kelly - Geelong Electrical Services", description: "Professional electrical services in Geelong. Residential, commercial, solar, and emergency solutions."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}