Merge version_2 into main #5
@@ -1,59 +1,28 @@
|
||||
import type { Metadata } from "next";
|
||||
import { DM_Sans } from "next/font/google";
|
||||
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 dmSans = DM_Sans({
|
||||
variable: "--font-dm-sans", subsets: ["latin"],
|
||||
const geist = Geist({
|
||||
variable: "--font-geist-sans", subsets: ["latin"],
|
||||
});
|
||||
|
||||
const halant = Halant({
|
||||
variable: "--font-halant", subsets: ["latin"],
|
||||
weight: ["300", "400", "500", "600", "700"],
|
||||
});
|
||||
|
||||
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 Colorado Springs | M.D. Service Plumbing", description: "Professional plumbing services in Colorado Springs. 24/7 emergency response, water heater repair, leak detection. Licensed, insured, 4.9★ rated. Call (719) 648-9086.", keywords: "plumber Colorado Springs, emergency plumbing, water heater repair, leak detection, 24/7 plumber, plumbing services", metadataBase: new URL("https://mdserviceplumbing.com"),
|
||||
alternates: {
|
||||
canonical: "https://mdserviceplumbing.com"
|
||||
},
|
||||
openGraph: {
|
||||
title: "24/7 Emergency Plumbing Colorado Springs", description: "Fast response. Fair pricing. Quality work you can count on. Call M.D. Service Plumbing today.", url: "https://mdserviceplumbing.com", siteName: "M.D. Service Plumbing", type: "website", images: [
|
||||
{
|
||||
url: "http://img.b2bpic.net/free-photo/combine-machine-service_146671-19098.jpg", alt: "M.D. Service Plumbing - Professional plumbing services"
|
||||
}
|
||||
]
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image", title: "24/7 Emergency Plumbing Colorado Springs", description: "Fast response. Fair pricing. Quality work. Call (719) 648-9086.", images: ["http://img.b2bpic.net/free-photo/combine-machine-service_146671-19098.jpg"]
|
||||
},
|
||||
robots: {
|
||||
index: true,
|
||||
follow: true
|
||||
}
|
||||
};
|
||||
title: "M.D. Service Plumbing - 24/7 Emergency Plumbing in Colorado Springs", description: "Fast, reliable plumbing services in Colorado Springs. 24/7 emergency response, same-day service, and fair pricing. 4.9★ rated."};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
}) {
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${dmSans.variable} ${halant.variable} ${inter.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<html lang="en">
|
||||
<body className={`${geist.variable} ${geistMono.variable} antialiased`}>
|
||||
{children}
|
||||
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1421,7 +1390,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -144,7 +144,7 @@ export default function LandingPage() {
|
||||
<ContactSplit
|
||||
tag="Get Help Now"
|
||||
title="Request Plumbing Service"
|
||||
description="Need emergency service or want to schedule an appointment? Call us 24/7 or submit your details below and we'll get back to you quickly."
|
||||
description="24/7 emergency support—most calls answered within 30 minutes. Need service? Submit your details below and we'll contact you promptly."
|
||||
background={{ variant: "plain" }}
|
||||
useInvertedBackground={false}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/happy-customers-service-agent-with-headset-communicating-with-customer-working-laptop-call-center_637285-127.jpg"
|
||||
|
||||
Reference in New Issue
Block a user