diff --git a/src/app/layout.tsx b/src/app/layout.tsx index e7f0a7b..852f855 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1423 +1,20 @@ 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"; -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const lato = Lato({ - variable: "--font-lato", subsets: ["latin"], - weight: ["100", "300", "400", "700", "900"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Emergency Plumbing Services 24/7 | Barry's Plumbing", description: "Barry's Emergency Plumbing provides fast emergency repairs, drain cleaning, and water heater service in Bellevue, Omaha, and surrounding areas. Available 24/7 with 30-minute response time.", keywords: "emergency plumber, plumbing services, drain cleaning, water heater repair, Bellevue, Omaha, Papillion, La Vista, Council Bluffs", robots: { - index: true, - follow: true, - }, - openGraph: { - title: "Emergency Plumbing Services 24/7 | Barry's Plumbing", description: "Fast, professional emergency plumbing service. 30-minute response time guaranteed. Licensed technicians, 100% satisfaction guaranteed.", siteName: "Barry's Emergency Plumbing", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/bearded-builder-man-construction-uniform-safety-helmet-looking-smiling-cheerfully-showing-thumbs-up_141793-111823.jpg", alt: "Emergency plumbing service"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Emergency Plumbing Services 24/7 | Barry's Plumbing", description: "Fast, professional emergency plumbing service available 24/7. 30-minute response time guaranteed.", images: [ - "http://img.b2bpic.net/free-photo/bearded-builder-man-construction-uniform-safety-helmet-looking-smiling-cheerfully-showing-thumbs-up_141793-111823.jpg"], - }, -}; + title: "Barry's Emergency Plumbing", description: "24/7 emergency plumbing services in Bellevue, Omaha, and surrounding areas"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -