diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 2f07a36..f738a4d 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,53 +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: "Plumbing Services Sartrouville | Local Artisan | €129–€590", description: "Professional plumbing solutions in Sartrouville. Emergency repairs, installations, diagnostics. Transparent pricing, same-day availability, 15+ years experience.", keywords: "plombier Sartrouville, plumbing repair, emergency plumber, installations, maintenance", metadataBase: new URL("https://plomberielocale.fr"), - alternates: { - canonical: "https://plomberielocale.fr" - }, - openGraph: { - title: "Professional Plumbing Services in Sartrouville", description: "Expert plumbing repairs and installations with transparent pricing and same-day availability.", url: "https://plomberielocale.fr", siteName: "Plomberie Locale", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/female-plumber-working-fix-problems-client-s-house_23-2150990725.jpg", alt: "Professional plumber" - } - ] - }, - twitter: { - card: "summary_large_image", title: "Plumbing Services Sartrouville", description: "Local artisan plumber | Emergency repairs | €129–€590 services", images: ["http://img.b2bpic.net/free-photo/female-plumber-working-fix-problems-client-s-house_23-2150990725.jpg"] - }, - robots: { - index: true, - follow: true - } -}; + title: "Plomberie Locale - Plumbing Services in Sartrouville", description: "Professional plumbing services in Sartrouville. Emergency repairs, installations, and maintenance with same-day availability."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}