Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| e444965ef4 | |||
| f93801e3de | |||
| 0ca90f23e9 |
@@ -1,53 +1,22 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Montserrat } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import "./globals.css";
|
||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
|
||||
const montserrat = Montserrat({
|
||||
variable: "--font-montserrat", subsets: ["latin"],
|
||||
});
|
||||
|
||||
const inter = Inter({
|
||||
variable: "--font-inter", subsets: ["latin"],
|
||||
});
|
||||
const inter = Inter({ variable: "--font-inter", subsets: ["latin"] });
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Gaudere - Ristorante di Pesce a Roma", description: "Scopri Gaudere, ristorante di pesce a Roma nel cuore di Mezzocammino. Piatti freschi, ingredienti locali e atmosfera elegante. Prenota il tuo tavolo oggi.", keywords: "ristorante pesce Roma, Mezzocammino, cucina mediterranea, fish restaurant Rome, prenotazioni, cena romantica", metadataBase: new URL("https://www.gaudereristorante.it/"),
|
||||
alternates: {
|
||||
canonical: "https://www.gaudereristorante.it/"
|
||||
},
|
||||
openGraph: {
|
||||
title: "Gaudere - Ristorante di Pesce a Roma", description: "Ristorante di pesce dove tradizione e innovazione si incontrano. Scopri la cucina mediterranea autentica.", url: "https://www.gaudereristorante.it/", siteName: "Gaudere", type: "website", images: [
|
||||
{
|
||||
url: "http://img.b2bpic.net/free-photo/orange-rolls-slices-table_140725-3796.jpg", alt: "Gaudere - Ristorante di Pesce a Roma"
|
||||
}
|
||||
]
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image", title: "Gaudere - Ristorante di Pesce a Roma", description: "Piatti freschi, ingredienti locali e atmosfera accogliente", images: ["http://img.b2bpic.net/free-photo/orange-rolls-slices-table_140725-3796.jpg"]
|
||||
},
|
||||
robots: {
|
||||
index: true,
|
||||
follow: true
|
||||
}
|
||||
};
|
||||
title: "Gaudere - Ristorante di Pesce a Roma", description: "Ristorante di pesce a Roma con piatti freschi, ingredienti locali e atmosfera accogliente nel cuore di Mezzocammino."};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
}) {
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${montserrat.variable} ${inter.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<html lang="it">
|
||||
<body className={`${inter.variable} antialiased`}>
|
||||
{children}
|
||||
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1415,7 +1384,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user