diff --git a/src/app/layout.tsx b/src/app/layout.tsx index f415535..e393e1e 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,51 +1,28 @@ import type { Metadata } from "next"; -import { Source_Sans_3 } from "next/font/google"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; +import { Geist, Geist_Mono } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -const sourceSans3 = Source_Sans_3({ - variable: "--font-source-sans-3", subsets: ["latin"], +const geist = Geist({ + variable: "--font-geist-sans", subsets: ["latin"], }); -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], +const geistMono = Geist_Mono({ + variable: "--font-geist-mono", subsets: ["latin"], }); export const metadata: Metadata = { - title: "Austin Plumbing | Fast, Reliable 24/7 Service | Texas Best Plumbing", description: "Local Austin plumbing experts offering 24/7 emergency repairs, installations, and maintenance. 4.8★ rated, licensed professionals with transparent pricing. Call now for same-day service.", keywords: "Austin plumbing, emergency plumbing, plumbing repair, plumbing services, 24/7 plumber, licensed plumber Austin, pipe repair, water heater repair, drain cleaning", robots: { - index: true, - follow: true - }, - openGraph: { - title: "Austin's Trusted Local Plumbing Service", description: "Fast, reliable 24/7 plumbing service in Austin. Licensed professionals, transparent pricing, and emergency availability. 4.8★ rating from 77+ customers.", siteName: "Texas Best Plumbing", type: "website" - }, - twitter: { - card: "summary_large_image", title: "Austin Plumbing | 24/7 Emergency Service", description: "Professional plumbing repairs and installations. Fast response, transparent pricing, 4.8★ rated." - } -}; + title: "Texas Best Plumbing - Austin Plumbing Services", description: "Fast, reliable plumbing services in Austin. 24/7 emergency repairs, installations, and maintenance by licensed professionals."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + + {children} +