From e18cd336ffce5151543f8a77a544e33d27ae2191 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 11 Mar 2026 11:59:31 +0000 Subject: [PATCH] Update src/app/layout.tsx --- src/app/layout.tsx | 52 ++++++++++++++++++++++++++++++++++++---------- 1 file changed, 41 insertions(+), 11 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index a02c995..098bfdf 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,28 +1,56 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; +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"; import { getVisualEditScript } from "@/utils/visual-edit-script"; -import { Mulish } from "next/font/google"; - - - -export const metadata: Metadata = { - title: "Webild components 2", - description: "Generated by create next app", -}; const mulish = Mulish({ variable: "--font-mulish", subsets: ["latin"], }); + const inter = Inter({ variable: "--font-inter", subsets: ["latin"], }); +export const metadata: Metadata = { + title: "Pizza Limouxine | Pizzeria Artisanale Limoux", + description: "Pizza Limouxine - Pizzeria à Limoux. Pizzas artisanales, repas sur place, livraison. 5.0/5 ⭐ Note excellente. Tél: 09 56 33 54 93", + keywords: "pizza Limoux, pizzeria Limoux, pizza à emporter Limoux, restaurant Limoux, pizza livraison", + metadataBase: new URL("https://pizzalimouxine.fr"), + alternates: { + canonical: "https://pizzalimouxine.fr", + }, + openGraph: { + title: "Pizza Limouxine | Pizzeria Artisanale Limoux", + description: "Découvrez nos pizzas artisanales à Limoux. Repas sur place, terrasse, livraison. 5.0/5 avis clients", + url: "https://pizzalimouxine.fr", + siteName: "Pizza Limouxine", + type: "website", + images: [ + { + url: "http://img.b2bpic.net/free-photo/top-view-pizza-slices-with-toppings_23-2148601642.jpg", + alt: "Pizza Limouxine - Pizzas Artisanales", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "Pizza Limouxine | Pizzeria Artisanale Limoux", + description: "Pizzas artisanales de qualité à Limoux. 5.0/5 ⭐ Livrées chaudes!", + images: [ + "http://img.b2bpic.net/free-photo/top-view-pizza-slices-with-toppings_23-2148601642.jpg", + ], + }, + robots: { + index: true, + follow: true, + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -31,7 +59,9 @@ export default function RootLayout({ return ( - + {children}