Merge version_2 into main #2
@@ -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>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -45,7 +45,7 @@ export default function LandingPage() {
|
||||
logoText="RK Garage Door"
|
||||
description="Professional garage door repair, installation, and maintenance services. Available 24/7 for emergency repairs with certified technicians and guaranteed satisfaction."
|
||||
buttons={[
|
||||
{ text: "Emergency Service", href: "contact" },
|
||||
{ text: "Call Now: (555) 123-4567", href: "tel:555-123-4567" },
|
||||
{ text: "Schedule Appointment", href: "contact" }
|
||||
]}
|
||||
background={{ variant: "sparkles-gradient" }}
|
||||
@@ -230,4 +230,4 @@ export default function LandingPage() {
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user