Merge version_2 into main #2
@@ -1,43 +1,20 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Mulish } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import "./globals.css";
|
||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
|
||||
const mulish = Mulish({
|
||||
variable: "--font-mulish", subsets: ["latin"],
|
||||
});
|
||||
|
||||
const inter = Inter({
|
||||
variable: "--font-inter", subsets: ["latin"],
|
||||
});
|
||||
const inter = Inter({ subsets: ["latin"] });
|
||||
|
||||
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: "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,
|
||||
},
|
||||
};
|
||||
title: "ProServe Plumbing - Trusted Plumbing Services", description: "Professional plumbing solutions for residential and commercial properties. Licensed, insured, and available for emergency service."};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
}) {
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${mulish.variable} ${inter.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<html lang="en">
|
||||
<body className={inter.className}>{children}
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1405,7 +1382,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -44,7 +44,7 @@ export default function LandingPage() {
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroSplitDualMedia
|
||||
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"
|
||||
tagIcon={Wrench}
|
||||
tagAnimation="slide-up"
|
||||
|
||||
Reference in New Issue
Block a user