diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index 1268fe0..f61fe19 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -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 (
-
-
-
-
- {children}
-
+
+
+ {children}
+
-
);
}
diff --git a/src/app/page.tsx b/src/app/page.tsx
index 8d1983b..e8314f4 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -144,7 +144,7 @@ export default function LandingPage() {