From f5c394a12d065bf9a0bfabda82e8fc6bacc8346e Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 4 Mar 2026 07:03:14 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 47 ++++++++++++---------------------------------- 1 file changed, 12 insertions(+), 35 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 99aecf0..1dbdc1a 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,50 +1,28 @@ import type { Metadata } from "next"; -import { Libre_Baskerville } 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 libreBaskerville = Libre_Baskerville({ - variable: "--font-libre-baskerville", subsets: ["latin"], - weight: ["400", "700"], +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: "Professional Electrician | Solar & Battery Installation Services", description: "Expert electrical services including solar panel installation, battery storage systems, and domestic electrical work. Licensed professionals serving homeowners with 15+ years experience.", keywords: "electrician, solar installation, battery storage, renewable energy, residential electrical", robots: { - index: true, - follow: true, - }, - openGraph: { - title: "ElectroWorks - Professional Electrical Solutions", description: "Transform your home's energy with solar panels, battery storage, and expert electrical services.", type: "website", siteName: "ElectroWorks", images: [ - { - url: "http://img.b2bpic.net/free-photo/solar-panel-installation-rooftop_23-2152021003.jpg", alt: "Professional solar installation"}, - ], - }, - twitter: { - card: "summary_large_image", title: "ElectroWorks - Professional Electrical Solutions", description: "Expert solar, battery, and electrical services for homeowners", images: [ - "http://img.b2bpic.net/free-photo/solar-panel-installation-rooftop_23-2152021003.jpg"], - }, -}; + title: "ElectroWorks - Professional Electrical Solutions", description: "Expert solar panel installation, battery storage systems, and comprehensive domestic electrical services for your home."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + + {children} +