Update src/app/layout.tsx
This commit is contained in:
@@ -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 (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body className={`${mulish.variable} ${inter.variable} antialiased`}>
|
||||
<body
|
||||
className={`${mulish.variable} ${inter.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
<script
|
||||
@@ -43,4 +73,4 @@ export default function RootLayout({
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user