import type { Metadata } from "next"; import { Libre_Baskerville } from "next/font/google"; import { Inter } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; const libreBaskerville = Libre_Baskerville({ variable: "--font-libre-baskerville", subsets: ["latin"], weight: ["400", "700"], }); const inter = Inter({ variable: "--font-inter", subsets: ["latin"], }); export const metadata: Metadata = { title: "Rudy's Electric Inc - Alexandria MN Electrician | Trusted Local Service", description: "Professional electrical services in Alexandria, MN. Residential & commercial electrician. Fair pricing, licensed & insured. Call (320) 762-XXXX today.", keywords: "electrician Alexandria MN, residential electrical contractor, commercial electrical services, panel upgrade, electrical repair, Alexandria Minnesota", metadataBase: new URL("https://rudyselectric.com"), alternates: { canonical: "https://rudyselectric.com", }, robots: { index: true, follow: true, }, openGraph: { title: "Rudy's Electric Inc - Trusted Alexandria MN Electrician", description: "Professional, reliable electrical services for homes and businesses. Serving Alexandria for decades. Fair pricing guaranteed.", url: "https://rudyselectric.com", siteName: "Rudy's Electric Inc", type: "website", images: [ { url: "http://img.b2bpic.net/free-photo/service-maintenance-worker-repairing_23-2149176753.jpg", alt: "Professional electrician providing service", }, ], }, twitter: { card: "summary_large_image", title: "Rudy's Electric Inc - Alexandria MN Electrician", description: "Professional electrical services. Call (320) 762-XXXX for residential & commercial needs.", images: ["http://img.b2bpic.net/free-photo/service-maintenance-worker-repairing_23-2149176753.jpg"], }, }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children}