5 Commits

Author SHA1 Message Date
1dcce38d15 Update src/app/page.tsx 2026-03-03 18:09:29 +00:00
bbe623ad5c Update src/app/layout.tsx 2026-03-03 18:09:28 +00:00
856bba2986 Merge version_1 into main
Merge version_1 into main
2026-03-03 18:04:27 +00:00
721076212b Merge version_1 into main
Merge version_1 into main
2026-03-03 17:53:35 +00:00
eabf04007c Merge version_1 into main
Merge version_1 into main
2026-03-03 17:43:39 +00:00
2 changed files with 7 additions and 37 deletions

View File

@@ -1,49 +1,20 @@
import type { Metadata } from "next"; import type { Metadata } from "next";
import { DM_Sans } from "next/font/google";
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 dmSans = DM_Sans({ const inter = Inter({ subsets: ["latin"] });
variable: "--font-dm-sans", subsets: ["latin"],
});
const halant = Halant({
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: "Professional Garage Door Repair & Installation Service", description: "Trusted local garage door repair, installation, and maintenance. Available Mon-Fri 8am-8pm. Fast same-day service, certified technicians, 100% warranty.", keywords: "garage door repair, garage door installation, garage door service, emergency repair, local service", robots: { title: "Pilot Garage Door - Professional Garage Door Service", description: "Fast, reliable garage door repair and installation service in your area. Available Monday-Friday, 8am-8pm. Emergency repairs, new installations, and maintenance."};
index: true,
follow: true,
},
openGraph: {
title: "Pilot Garage Door - Professional Service You Can Trust", description: "Expert garage door repair and installation. Available Monday-Friday 8am-8pm.", siteName: "Pilot Garage Door", type: "website"},
twitter: {
card: "summary_large_image", title: "Pilot Garage Door Service", description: "Professional garage door repair and installation service"},
};
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={`${dmSans.variable} ${halant.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<script <script
dangerouslySetInnerHTML={{ dangerouslySetInnerHTML={{
__html: ` __html: `
@@ -1411,7 +1382,6 @@ export default function RootLayout({
}} }}
/> />
</body> </body>
</ServiceWrapper>
</html> </html>
); );
} }

View File

@@ -186,7 +186,7 @@ export default function LandingPage() {
name: "message", placeholder: "Describe your garage door issue or service request", rows: 5, name: "message", placeholder: "Describe your garage door issue or service request", rows: 5,
required: true, required: true,
}} }}
buttonText="Request Service" buttonText="Get Free Quote & Schedule"
/> />
</div> </div>