From 7c4d93f67b912e736c1864fe0e417f07c7d15f1f Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 5 Mar 2026 20:53:54 +0000 Subject: [PATCH] Update src/app/layout.tsx --- src/app/layout.tsx | 37 ++++++------------------------------- 1 file changed, 6 insertions(+), 31 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 14fab27..088318d 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,44 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } 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 inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "RK Garage Door | Repair, Installation & 24/7 Emergency Service", description: "Professional garage door repair, installation, and maintenance services. Available 24/7 for emergencies. Certified technicians, satisfaction guaranteed.", keywords: "garage door repair, garage door installation, garage door service, 24/7 emergency repair, garage door maintenance", openGraph: { - title: "RK Garage Door | Professional Service", description: "Expert garage door repair and installation. 24/7 emergency response. Certified technicians.", siteName: "RK Garage Door", type: "website"}, - twitter: { - card: "summary_large_image", title: "RK Garage Door Services", description: "Professional garage door repair and installation with 24/7 emergency service."}, - robots: { - index: true, - follow: true, - }, -}; + title: "RK Garage Door - Professional Garage Door Services", description: "Professional garage door repair, installation, and maintenance services. Available 24/7 for emergency repairs with certified technicians and guaranteed satisfaction."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}