diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index a740ad5..c77ff00 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -1,70 +1,20 @@
import type { Metadata } from "next";
-import { Libre_Baskerville } from "next/font/google";
import { Inter } from "next/font/google";
import "./globals.css";
-import { ServiceWrapper } from "@/components/ServiceWrapper";
-import Tag from "@/tag/Tag";
-const libreBaskerville = Libre_Baskerville({
- variable: "--font-libre-baskerville",
- subsets: ["latin"],
- weight: ["400", "700"],
-});
-
-const inter = Inter({
- variable: "--font-inter",
- subsets: ["latin"],
-});
+const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
- title: "Fall River Plumber | 5-Star Rated | Flat Rate Pricing",
- description: "Trusted local plumber in Fall River. Family-owned, 5-star rated. Flat rate pricing, guaranteed work. Emergency service available.",
- keywords: "plumber Fall River, emergency plumber, water heater repair, drain cleaning, local plumber",
- metadataBase: new URL("https://fallriverplumbing.com"),
- alternates: {
- canonical: "https://fallriverplumbing.com",
- },
- openGraph: {
- title: "Fall River Plumbing - 5-Star Rated Local Plumber",
- description: "Professional plumbing services in Fall River. Flat rate pricing, guaranteed work, family-owned.",
- url: "https://fallriverplumbing.com",
- siteName: "Fall River Plumbing",
- type: "website",
- images: [
- {
- url: "http://img.b2bpic.net/free-photo/male-plumber-working-fix-problems-client-s-house_23-2150990698.jpg",
- alt: "Professional plumber at work",
- },
- ],
- },
- twitter: {
- card: "summary_large_image",
- title: "Fall River Plumbing - Trusted Local Expert",
- description: "5-star rated plumbing services. Flat rate pricing. Call now: (508) 555-0123",
- images: [
- "http://img.b2bpic.net/free-photo/male-plumber-working-fix-problems-client-s-house_23-2150990698.jpg",
- ],
- },
- robots: {
- index: true,
- follow: true,
- },
-};
+ title: "Fall River Plumbing - Licensed, Insured & 5-Star Rated", description: "Expert plumbing services in Fall River. Licensed, insured, and family-owned with guaranteed workmanship and flat rate pricing."};
export default function RootLayout({
children,
-}: Readonly<{
+}: {
children: React.ReactNode;
-}>) {
+}) {
return (
-
-