From 76dfcffdff666b0c5ac2f33827d267fd9bb98d50 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 9 Mar 2026 23:13:24 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 1435 +------------------------------------------- 1 file changed, 12 insertions(+), 1423 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index a6b039d..f0354e9 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1434 +1,24 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Inter_Tight } from "next/font/google"; +import localFont from "next/font/local"; 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 interTight = Inter_Tight({ - variable: "--font-inter-tight", - subsets: ["latin"], - weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], -}); +const geistSans = localFont({ + src: "./fonts/GeistVF.woff2", variable: "--font-geist-sans", weight: "100 900"}); +const geistMono = localFont({ + src: "./fonts/GeistMonoVF.woff2", variable: "--font-geist-mono", weight: "100 900"}); export const metadata: Metadata = { - title: "Trusted Domestic Electricians in York – 50+ Years Experience", - description: "Professional electrical services in York including rewiring, safety inspections, smart home installations, and emergency repairs. Get your free quote from Dennis King Electrical today.", - keywords: "electrician York, domestic electrical York, house rewiring York, electrical services York, qualified electrician, electrical safety inspection", - metadataBase: new URL("https://denniskingelectrical.co.uk"), - alternates: { - canonical: "https://denniskingelectrical.co.uk", - }, - openGraph: { - title: "Dennis King Electrical - Trusted Electricians in York", - description: "50+ years of professional domestic electrical services. Free quotes available.", - url: "https://denniskingelectrical.co.uk", - siteName: "Dennis King Electrical", - type: "website", - }, - twitter: { - card: "summary_large_image", - title: "Trusted Electricians in York", - description: "Professional electrical installation and repair services", - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Create Next App", description: "Generated by create next app"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -