4 Commits

Author SHA1 Message Date
4b7d058495 Update src/app/page.tsx 2026-03-05 02:35:35 +00:00
27c11a3d36 Update src/app/page.tsx 2026-03-05 02:34:16 +00:00
47e5997835 Update src/app/layout.tsx 2026-03-05 02:34:15 +00:00
f6d5bd74bd Merge version_1 into main
Merge version_1 into main
2026-03-05 02:32:47 +00:00
2 changed files with 18 additions and 37 deletions

View File

@@ -1,49 +1,28 @@
import type { Metadata } from "next"; import type { Metadata } from "next";
import { Halant } from "next/font/google"; import { Geist, Geist_Mono } 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 geist = Geist({
variable: "--font-halant", subsets: ["latin"], variable: "--font-geist-sans", subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
}); });
const inter = Inter({ const geistMono = Geist_Mono({
variable: "--font-inter", subsets: ["latin"], variable: "--font-geist-mono", subsets: ["latin"],
}); });
export const metadata: Metadata = { export const metadata: Metadata = {
title: "24/7 Emergency Plumbing & Water Cleanup | RotoRooter", description: "Licensed professional plumbing repairs and emergency water cleanup services available 24/7. Fast response, trusted expertise serving your community.", keywords: "plumbing, emergency plumbing, water damage, burst pipes, drain cleaning, local plumber", robots: { title: "Create Next App", description: "Generated by create next app"};
index: true,
follow: true,
},
openGraph: {
title: "24/7 Emergency Plumbing Services | RotoRooter", description: "Licensed professional plumbing repairs and water damage restoration. Available 24/7 with fast emergency response.", type: "website", siteName: "RotoRooter", images: [
{
url: "http://img.b2bpic.net/free-photo/cheerful-asian-plumber-sitting-floor-repairing-kitchen-sink_1098-17780.jpg", alt: "Professional plumber emergency service"},
],
},
twitter: {
card: "summary_large_image", title: "24/7 Emergency Plumbing | RotoRooter", description: "Licensed plumbing repairs and water cleanup. Fast, reliable service when you need it.", images: ["http://img.b2bpic.net/free-photo/cheerful-asian-plumber-sitting-floor-repairing-kitchen-sink_1098-17780.jpg"],
},
};
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={`${geist.variable} ${geistMono.variable} antialiased`}>
<body {children}
className={`${halant.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<script <script
dangerouslySetInnerHTML={{ dangerouslySetInnerHTML={{
__html: ` __html: `
@@ -1411,7 +1390,6 @@ export default function RootLayout({
}} }}
/> />
</body> </body>
</ServiceWrapper>
</html> </html>
); );
} }

View File

@@ -106,7 +106,10 @@ export default function LandingPage() {
tag="Why RotoRooter" tag="Why RotoRooter"
title="Trusted By Thousands of Homeowners Across Your Community. Licensed, Insured, and Ready to Help." title="Trusted By Thousands of Homeowners Across Your Community. Licensed, Insured, and Ready to Help."
useInvertedBackground={false} useInvertedBackground={false}
buttons={[{ text: "Get Your Free Estimate", href: "contact" }]} buttons={[
{ text: "Get Your Free Estimate", href: "contact" },
{ text: "View Certifications", href: "#" }
]}
/> />
</div> </div>
@@ -199,4 +202,4 @@ export default function LandingPage() {
</div> </div>
</ThemeProvider> </ThemeProvider>
); );
} }