From f51c76e95886baa199dad4ff76227cbfc84f19e5 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 15 Mar 2026 05:20:02 +0000 Subject: [PATCH] Update src/app/layout.tsx --- src/app/layout.tsx | 56 +++++++++++++++++++++++++++++++++++++++------- 1 file changed, 48 insertions(+), 8 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 7d68022..08fb4a0 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,18 +1,22 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { Lato } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; import { getVisualEditScript } from "@/utils/visual-edit-script"; -import { Lato } from "next/font/google"; +const halant = Halant({ + variable: "--font-halant", + subsets: ["latin"], + weight: ["300", "400", "500", "600", "700"], +}); - -export const metadata: Metadata = { - title: "Webild components 2", - description: "Generated by create next app", -}; +const inter = Inter({ + variable: "--font-inter", + subsets: ["latin"], +}); const lato = Lato({ variable: "--font-lato", @@ -20,6 +24,40 @@ const lato = Lato({ weight: ["100", "300", "400", "700", "900"], }); +export const metadata: Metadata = { + title: "Trusted Local Electricians Maryland NSW | Urban Electrical & Air", + description: "Professional electrical services in Maryland NSW. Licensed electricians for repairs, kitchen wiring, appliance installation & more. Same-day response. Call 0411 643 201.", + keywords: "electrician Maryland NSW, local electrician Newcastle, kitchen electrician, electrical repairs, appliance installation", + metadataBase: new URL("https://urbanelectricalair.com.au"), + alternates: { + canonical: "https://urbanelectricalair.com.au", + }, + openGraph: { + title: "Urban Electrical & Air - Local Electricians Maryland NSW", + description: "Trusted electrical services for homes and renovations. Fast response, licensed professionals, quality workmanship.", + siteName: "Urban Electrical & Air", + type: "website", + images: [ + { + url: "http://img.b2bpic.net/free-photo/male-electrician-working-switchboard-with-electrical-connection-cable_169016-50980.jpg", + alt: "Professional electrician service", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "Urban Electrical & Air - Local Electricians Maryland NSW", + description: "Professional electrical services. Call 0411 643 201 for same-day service.", + images: [ + "http://img.b2bpic.net/free-photo/male-electrician-working-switchboard-with-electrical-connection-cable_169016-50980.jpg", + ], + }, + robots: { + index: true, + follow: true, + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -28,7 +66,9 @@ export default function RootLayout({ return ( - + {children}