From a063751623e41d0021a171fc58a172963c8a0e3a Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 7 Mar 2026 17:52:26 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 1436 +------------------------------------------- 1 file changed, 7 insertions(+), 1429 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index c8a2cd1..81e34da 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1441 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Archivo } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -const halant = Halant({ - variable: "--font-halant", - subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", - subsets: ["latin"], -}); - -const archivo = Archivo({ - variable: "--font-archivo", - subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "ACK Artisanat - Dépannage Urgent Mulhouse | Plombier Serrurier Électricien", - description: "Dépannage rapide plomberie, serrurerie, électricité à Illzach et Mulhouse. 700+ avis 4.9⭐. Intervention urgente 24/7. Technicien local expérimenté.", - keywords: "plombier Mulhouse, serrurier Mulhouse, électricien Mulhouse, dépannage urgent Mulhouse, chauffagiste Mulhouse, ACK Artisanat", - metadataBase: new URL("https://ack-artisanat.fr"), - alternates: { - canonical: "https://ack-artisanat.fr", - }, - openGraph: { - title: "ACK Artisanat - Dépannage Urgent Plomberie, Serrurerie, Électricité", - description: "Intervention rapide à Illzach et Mulhouse. 700+ avis clients 4.9⭐. Technicien local, même le dimanche.", - url: "https://ack-artisanat.fr", - siteName: "ACK Artisanat", - type: "website", - images: [ - { - url: "https://ack-artisanat.fr/og-image.jpg", - alt: "ACK Artisanat - Dépannage urgent", - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "ACK Artisanat - Dépannage Urgent Mulhouse", - description: "Plombier, serrurier, électricien à Illzach. Intervention rapide 24/7. 700+ avis 4.9⭐", - images: ["https://ack-artisanat.fr/twitter-image.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "ACK Artisanat - Dépannage Urgent 24/7", description: "Dépannage rapide en plomberie, serrurerie et électricité à Illzach et Mulhouse. Plus de 700 avis clients."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -