From f71380bccb09e7457f2cb491c0f34e6a641f8e6a Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 9 Mar 2026 12:33:27 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 1412 +------------------------------------------- 1 file changed, 6 insertions(+), 1406 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 90b58bc..27ac2b7 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1419 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Archivo } 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 archivo = Archivo({ - variable: "--font-archivo", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Thunderbolt Electric | Professional Electrical Services", description: "Expert licensed electricians providing residential, commercial, and emergency electrical services. Fast response times and reliable solutions for all your electrical needs.", keywords: "electrician, electrical services, residential electrical, commercial electrical, emergency repair, electrical installation", metadataBase: new URL("https://thunderbolt-electric.com"), - alternates: { - canonical: "https://thunderbolt-electric.com"}, - openGraph: { - title: "Thunderbolt Electric | Professional Electrical Services", description: "Expert licensed electricians providing residential, commercial, and emergency electrical services.", url: "https://thunderbolt-electric.com", siteName: "Thunderbolt Electric", type: "website"}, - twitter: { - card: "summary_large_image", title: "Thunderbolt Electric | Professional Electrical Services", description: "Expert licensed electricians providing residential, commercial, and emergency electrical services."}, - robots: { - index: true, - follow: true, - }, -}; + title: "Thunderbolt Electric | Professional Electrical Services", description: "Expert electrical services for residential and commercial properties. Licensed electricians, fast response times, and reliable solutions."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -