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}
-
);
}
diff --git a/src/app/page.tsx b/src/app/page.tsx
index e03d5ea..ae48d43 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -194,7 +194,7 @@ export default function LandingPage() {