From ff214ac558f051ece2e160b096370425d5f9223f Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 8 Mar 2026 02:02:48 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 1439 +------------------------------------------- 1 file changed, 9 insertions(+), 1430 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 2de00f2..d1ad1af 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1440 +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"], -}); +import { Analytics } from "@vercel/analytics/react"; +import "@/styles/globals.css"; export const metadata: Metadata = { - title: "All Pro Electric - Trusted Escondido Electrician | 24/7 Service", - description: "5-star rated electrician in Escondido serving San Diego County. EV charger installation, repairs, lighting & panel upgrades. Call (760) 518-5912 for fast, reliable service.", - keywords: "electrician Escondido, EV charger installation, electrical repair San Diego, 24/7 electrician, licensed electrician near me", - metadataBase: new URL("https://allproelectric.com"), - alternates: { - canonical: "https://allproelectric.com", - }, - openGraph: { - title: "All Pro Electric - Trusted Escondido Electrician", - description: "Professional electrical services in Escondido & San Diego County. 5-star rated, 24/7 availability, EV charger installation, repairs & upgrades.", - url: "https://allproelectric.com", - siteName: "All Pro Electric", - type: "website", - images: [ - { - url: "http://img.b2bpic.net/free-photo/manual-work-switchboard-electrical-installation-cable-connection_169016-68257.jpg", - alt: "Professional electrician service", - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "All Pro Electric - Escondido Electrician", - description: "Fast, reliable electrical service. EV chargers, repairs, upgrades. Call now: (760) 518-5912", - images: ["http://img.b2bpic.net/free-photo/manual-work-switchboard-electrical-installation-cable-connection_169016-68257.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "All Pro Electric - Trusted Electrician in Escondido, CA", description: "Fast, reliable 24/7 electrical service in Escondido. Licensed electricians specializing in residential repairs, EV charger installation, and panel upgrades."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - {children} - -