Merge version_2 into main #2

Merged
bender merged 2 commits from version_2 into main 2026-03-05 02:34:23 +00:00
2 changed files with 19 additions and 38 deletions

View File

@@ -1,49 +1,28 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Geist, Geist_Mono } 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 geist = Geist({
variable: "--font-geist-sans", subsets: ["latin"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
const geistMono = Geist_Mono({
variable: "--font-geist-mono", subsets: ["latin"],
});
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: {
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"],
},
};
title: "Create Next App", description: "Generated by create next app"};
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={`${geist.variable} ${geistMono.variable} antialiased`}>
{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1411,7 +1390,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}
}

View File

@@ -9,7 +9,7 @@ import MetricCardEleven from '@/components/sections/metrics/MetricCardEleven';
import TestimonialCardTwelve from '@/components/sections/testimonial/TestimonialCardTwelve';
import ContactText from '@/components/sections/contact/ContactText';
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
import { AlertCircle, Zap, Shield, Droplets, Wind, CheckCircle, Eye, Wrench, Star } from 'lucide-react';
import { AlertCircle, Zap, Shield, Droplets, Wind, CheckCircle, Eye, Wrench, Star, Certificate } from 'lucide-react';
export default function LandingPage() {
return (
@@ -106,7 +106,10 @@ export default function LandingPage() {
tag="Why RotoRooter"
title="Trusted By Thousands of Homeowners Across Your Community. Licensed, Insured, and Ready to Help."
useInvertedBackground={false}
buttons={[{ text: "Get Your Free Estimate", href: "contact" }]}
buttons={[
{ text: "Get Your Free Estimate", href: "contact" },
{ text: "View Certifications", href: "#" }
]}
/>
</div>
@@ -199,4 +202,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}