Update src/app/layout.tsx

This commit is contained in:
2026-03-03 18:08:41 +00:00
parent 0681179889
commit d3ceafe366

View File

@@ -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 (
<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: `
@@ -1415,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}