Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| f93801e3de | |||
| 0ca90f23e9 |
@@ -1,52 +1,21 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { Montserrat } from "next/font/google";
|
|
||||||
import { Inter } from "next/font/google";
|
import { Inter } from "next/font/google";
|
||||||
import "./globals.css";
|
import "./globals.css";
|
||||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
|
||||||
import Tag from "@/tag/Tag";
|
|
||||||
|
|
||||||
const montserrat = Montserrat({
|
const inter = Inter({ variable: "--font-inter", subsets: ["latin"] });
|
||||||
variable: "--font-montserrat", subsets: ["latin"],
|
|
||||||
});
|
|
||||||
|
|
||||||
const inter = Inter({
|
|
||||||
variable: "--font-inter", subsets: ["latin"],
|
|
||||||
});
|
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
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/"),
|
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."};
|
||||||
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
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
export default function RootLayout({
|
export default function RootLayout({
|
||||||
children,
|
children,
|
||||||
}: Readonly<{
|
}: {
|
||||||
children: React.ReactNode;
|
children: React.ReactNode;
|
||||||
}>) {
|
}) {
|
||||||
return (
|
return (
|
||||||
<html lang="en" suppressHydrationWarning>
|
<html lang="it">
|
||||||
<ServiceWrapper>
|
<body className={`${inter.variable} antialiased`}>
|
||||||
<body
|
{children}
|
||||||
className={`${montserrat.variable} ${inter.variable} antialiased`}
|
|
||||||
>
|
|
||||||
<Tag />
|
|
||||||
{children}
|
|
||||||
|
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
@@ -1415,7 +1384,6 @@ export default function RootLayout({
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</body>
|
</body>
|
||||||
</ServiceWrapper>
|
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user