Update src/app/layout.tsx

This commit is contained in:
2026-03-05 20:53:54 +00:00
parent 06d592e250
commit 7c4d93f67b

View File

@@ -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 (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1406,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}