diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index 8b96cd5..f276ec6 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -85,7 +85,7 @@ export default function AboutPage() { }, ]} buttonAnimation="slide-up" - imageSrc="http://img.b2bpic.net/free-photo/male-electrician-working-switchboard-with-electrical-connection-cable_169016-50980.jpg" + imageSrc="http://img.b2bpic.net/free-photo/male-electrician-working-switchboard-with-electrical-connection-cable_169016-50980.jpg?_wi=4" imageAlt="Urban Electrical & Air team" useInvertedBackground={false} /> diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index 60c817e..52ce9d0 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -82,7 +82,7 @@ export default function ContactPage() { useInvertedBackground={false} mediaAnimation="blur-reveal" mediaPosition="left" - imageSrc="http://img.b2bpic.net/free-photo/male-electrician-working-switchboard-with-electrical-connection-cable_169016-50980.jpg" + imageSrc="http://img.b2bpic.net/free-photo/male-electrician-working-switchboard-with-electrical-connection-cable_169016-50980.jpg?_wi=5" imageAlt="Professional electrical service" buttonText="Send Request" inputs={[ @@ -132,7 +132,7 @@ export default function ContactPage() { useInvertedBackground={false} mediaAnimation="blur-reveal" mediaPosition="right" - imageSrc="http://img.b2bpic.net/free-photo/male-electrician-working-switchboard-with-electrical-connection-cable_169016-50980.jpg" + imageSrc="http://img.b2bpic.net/free-photo/male-electrician-working-switchboard-with-electrical-connection-cable_169016-50980.jpg?_wi=6" imageAlt="Electrician answering questions" faqsAnimation="slide-up" animationType="smooth" 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}