Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 37618cea3b | |||
| 0c87af08ee | |||
| 4d99d6dcc0 |
@@ -1,43 +1,20 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { Mulish } 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 mulish = Mulish({
|
const inter = Inter({ subsets: ["latin"] });
|
||||||
variable: "--font-mulish", subsets: ["latin"],
|
|
||||||
});
|
|
||||||
|
|
||||||
const inter = Inter({
|
|
||||||
variable: "--font-inter", subsets: ["latin"],
|
|
||||||
});
|
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
export const metadata: Metadata = {
|
||||||
title: "Professional Plumbing Services | ProServe", description: "Expert plumbing services with 20+ years experience. Fast response, transparent pricing, licensed & insured. Call now for free quote or emergency service.", keywords: "plumbing services, emergency plumber, drain cleaning, water heater, licensed plumber, affordable plumbing", openGraph: {
|
title: "ProServe Plumbing - Trusted Plumbing Services", description: "Professional plumbing solutions for residential and commercial properties. Licensed, insured, and available for emergency service."};
|
||||||
title: "Professional Plumbing Services | ProServe", description: "Get professional plumbing help fast. Licensed, insured, and available 24/7. Free quotes and same-day service available.", type: "website", siteName: "ProServe Plumbing"},
|
|
||||||
twitter: {
|
|
||||||
card: "summary_large_image", title: "Professional Plumbing Services | ProServe", description: "Expert plumbing solutions for your home or business. Call now for free estimate."},
|
|
||||||
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={`${mulish.variable} ${inter.variable} antialiased`}
|
|
||||||
>
|
|
||||||
<Tag />
|
|
||||||
{children}
|
|
||||||
|
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
__html: `
|
__html: `
|
||||||
@@ -1405,7 +1382,6 @@ export default function RootLayout({
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</body>
|
</body>
|
||||||
</ServiceWrapper>
|
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -44,7 +44,7 @@ export default function LandingPage() {
|
|||||||
<div id="hero" data-section="hero">
|
<div id="hero" data-section="hero">
|
||||||
<HeroSplitDualMedia
|
<HeroSplitDualMedia
|
||||||
title="Trusted Plumbing Services in Your Area – Fast, Affordable, Reliable"
|
title="Trusted Plumbing Services in Your Area – Fast, Affordable, Reliable"
|
||||||
description="Professional plumbing solutions for residential and commercial properties. Licensed, insured, and available for emergency service. Get a free quote today or call for immediate assistance."
|
description="Professional plumbing solutions for residential and commercial properties. Join 5,000+ satisfied customers who trust our licensed, insured team for emergency service and expert repairs. Get a free quote today or call for immediate assistance."
|
||||||
tag="Expert Plumbing"
|
tag="Expert Plumbing"
|
||||||
tagIcon={Wrench}
|
tagIcon={Wrench}
|
||||||
tagAnimation="slide-up"
|
tagAnimation="slide-up"
|
||||||
|
|||||||
Reference in New Issue
Block a user