Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 4b7d058495 | |||
| 27c11a3d36 | |||
| 47e5997835 | |||
| f6d5bd74bd |
@@ -1,48 +1,27 @@
|
|||||||
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={{
|
||||||
@@ -1411,7 +1390,6 @@ export default function RootLayout({
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</body>
|
</body>
|
||||||
</ServiceWrapper>
|
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
@@ -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>
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user