Merge version_2 into main #4

Merged
bender merged 2 commits from version_2 into main 2026-03-03 18:08:50 +00:00
2 changed files with 8 additions and 42 deletions

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>
);
}

View File

@@ -50,7 +50,7 @@ export default function LandingPage() {
tagIcon={Wrench}
tagAnimation="slide-up"
buttons={[
{ text: "Request a quote", href: "#contact" },
{ text: "Get Same-Day Quote", href: "#contact" },
{ text: "Learn more", href: "#services" }
]}
buttonAnimation="slide-up"
@@ -283,4 +283,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}