Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 04f5ea8cc7 | |||
| 7c4d93f67b | |||
| 06d592e250 |
@@ -1,44 +1,20 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { Halant } from "next/font/google";
|
|
||||||
import { Inter } from "next/font/google";
|
import { Inter } from "next/font/google";
|
||||||
import "./globals.css";
|
import "./globals.css";
|
||||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
|
||||||
import Tag from "@/tag/Tag";
|
|
||||||
|
|
||||||
const halant = Halant({
|
const inter = Inter({ subsets: ["latin"] });
|
||||||
variable: "--font-halant", subsets: ["latin"],
|
|
||||||
weight: ["300", "400", "500", "600", "700"],
|
|
||||||
});
|
|
||||||
|
|
||||||
const inter = Inter({
|
|
||||||
variable: "--font-inter", subsets: ["latin"],
|
|
||||||
});
|
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
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 Garage Door Services", description: "Professional garage door repair, installation, and maintenance services. Available 24/7 for emergency repairs with certified technicians and guaranteed satisfaction."};
|
||||||
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,
|
|
||||||
},
|
|
||||||
};
|
|
||||||
|
|
||||||
export default function RootLayout({
|
export default function RootLayout({
|
||||||
children,
|
children,
|
||||||
}: Readonly<{
|
}: {
|
||||||
children: React.ReactNode;
|
children: React.ReactNode;
|
||||||
}>) {
|
}) {
|
||||||
return (
|
return (
|
||||||
<html lang="en" suppressHydrationWarning>
|
<html lang="en">
|
||||||
<ServiceWrapper>
|
<body className={inter.className}>{children}
|
||||||
<body
|
|
||||||
className={`${halant.variable} ${inter.variable} antialiased`}
|
|
||||||
>
|
|
||||||
<Tag />
|
|
||||||
{children}
|
|
||||||
|
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
__html: `
|
__html: `
|
||||||
@@ -1406,7 +1382,6 @@ export default function RootLayout({
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</body>
|
</body>
|
||||||
</ServiceWrapper>
|
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -45,7 +45,7 @@ export default function LandingPage() {
|
|||||||
logoText="RK Garage Door"
|
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."
|
description="Professional garage door repair, installation, and maintenance services. Available 24/7 for emergency repairs with certified technicians and guaranteed satisfaction."
|
||||||
buttons={[
|
buttons={[
|
||||||
{ text: "Emergency Service", href: "contact" },
|
{ text: "Call Now: (555) 123-4567", href: "tel:555-123-4567" },
|
||||||
{ text: "Schedule Appointment", href: "contact" }
|
{ text: "Schedule Appointment", href: "contact" }
|
||||||
]}
|
]}
|
||||||
background={{ variant: "sparkles-gradient" }}
|
background={{ variant: "sparkles-gradient" }}
|
||||||
|
|||||||
Reference in New Issue
Block a user