4 Commits

Author SHA1 Message Date
051de60043 Merge version_2 into main
Merge version_2 into main
2026-03-05 20:53:58 +00:00
04f5ea8cc7 Update src/app/page.tsx 2026-03-05 20:53:54 +00:00
7c4d93f67b Update src/app/layout.tsx 2026-03-05 20:53:54 +00:00
06d592e250 Merge version_1 into main
Merge version_1 into main
2026-03-05 20:49:11 +00:00
2 changed files with 8 additions and 33 deletions

View File

@@ -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>
); );
} }

View File

@@ -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" }}
@@ -230,4 +230,4 @@ export default function LandingPage() {
</div> </div>
</ThemeProvider> </ThemeProvider>
); );
} }