From 94de375bd95b5b1ae6fed86131375b10caed211c Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 4 Mar 2026 21:05:52 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 48 ++++++---------------------------------------- 1 file changed, 6 insertions(+), 42 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 1ab1773..dfef1fa 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,55 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { DM_Sans } 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 dmSans = DM_Sans({ - variable: "--font-dm-sans", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Lumière Cuivre | Lampes Artisanales en Cuivre", description: "Découvrez nos lampes artisanales façonnées à la main en cuivre par nos maîtres artisans. Illuminez votre espace avec l'élégance intemporelle du cuivre travaillé.", keywords: "lampe cuivre, artisan, luminaire, décoration, design, fait main, français", openGraph: { - title: "Lumière Cuivre | Lampes Artisanales en Cuivre", description: "Découvrez nos lampes artisanales façonnées à la main en cuivre par nos maîtres artisans.", siteName: "Lumière Cuivre", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/details-lids-with-dishes-traditional-copper-turkish-utensils-shelf-kitchen-home-restaurant-selective-focus-traditional-crafts_166373-4667.jpg", alt: "Lampe en cuivre artisanale"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Lumière Cuivre | Lampes Artisanales en Cuivre", description: "Découvrez nos lampes artisanales façonnées à la main en cuivre.", images: [ - "http://img.b2bpic.net/free-photo/details-lids-with-dishes-traditional-copper-turkish-utensils-shelf-kitchen-home-restaurant-selective-focus-traditional-crafts_166373-4667.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Lumière Cuivre - Lampes Artisanales en Cuivre", description: "Découvrez nos lampes artisanales façonnées à la main en cuivre par nos maîtres artisans. Artisanat français depuis 1999."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}