diff --git a/src/app/layout.tsx b/src/app/layout.tsx index a088e29..198514e 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,24 +1,61 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { Source_Sans_3 } 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 { Source_Sans_3 } 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 sourceSans3 = Source_Sans_3({ variable: "--font-source-sans-3", subsets: ["latin"], }); +export const metadata: Metadata = { + title: "Orlando 5 Star Plumbing | Emergency Plumber 24/7", + description: "Drain Genie Plumbing provides trusted 24/7 emergency plumbing services in Orlando, FL. Drain cleaning, water heaters, repiping, and more. Licensed and insured.", + keywords: "Orlando plumber, emergency plumbing, drain cleaning, water heater repair, repiping, Orlando plumbing services", + metadataBase: new URL("https://www.draingenieplumbing.com/orlando"), + alternates: { + canonical: "https://www.draingenieplumbing.com/orlando", + }, + openGraph: { + title: "Orlando's Top-Rated Plumbers | Drain Genie Plumbing", + description: "Professional 24/7 emergency plumbing services in Orlando. Drain cleaning, water heaters, repiping, and all plumbing needs.", + url: "https://www.draingenieplumbing.com/orlando", + siteName: "Drain Genie Plumbing", + type: "website", + images: [ + { + url: "https://www.draingenieplumbing.com/og-image.jpg", + alt: "Orlando 5 Star Plumbing Services", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "Orlando Emergency Plumber | 24/7 Service", + description: "Call Drain Genie Plumbing for professional emergency plumbing services in Orlando. Available 24/7.", + images: ["https://www.draingenieplumbing.com/twitter-image.jpg"], + }, + robots: { + index: true, + follow: true, + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -27,7 +64,9 @@ export default function RootLayout({ return ( - + {children}