|
|
|
|
@@ -1,75 +1,20 @@
|
|
|
|
|
import type { Metadata } from "next";
|
|
|
|
|
import { Halant } from "next/font/google";
|
|
|
|
|
import { Inter } from "next/font/google";
|
|
|
|
|
import { Lato } 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 lato = Lato({
|
|
|
|
|
variable: "--font-lato",
|
|
|
|
|
subsets: ["latin"],
|
|
|
|
|
weight: ["100", "300", "400", "700", "900"],
|
|
|
|
|
});
|
|
|
|
|
const inter = Inter({ subsets: ["latin"] });
|
|
|
|
|
|
|
|
|
|
export const metadata: Metadata = {
|
|
|
|
|
title: "Ristorante Angolo Divino - Cucina Italiana Autentica a Grosseto",
|
|
|
|
|
description: "Ristorante a conduzione familiare nel cuore di Grosseto con cucina italiana autentica, ingredienti freschi e atmosfera accogliente. Specialità: Babà al Rum e pasta fresca fatta in casa. Prenota il tuo tavolo.",
|
|
|
|
|
keywords: "ristorante Grosseto, cucina italiana, ristorante familiare, Maremma Shopping Center, autentica cucina toscana",
|
|
|
|
|
metadataBase: new URL("https://angolodivinogrosseto.it"),
|
|
|
|
|
alternates: {
|
|
|
|
|
canonical: "https://angolodivinogrosseto.it",
|
|
|
|
|
},
|
|
|
|
|
openGraph: {
|
|
|
|
|
title: "Ristorante Angolo Divino - Autentica Cucina Italiana a Grosseto",
|
|
|
|
|
description: "Scopri l'autenticità della cucina italiana nel nostro ristorante a conduzione familiare. Specialità: Babà al Rum e pasta fresca.",
|
|
|
|
|
url: "https://angolodivinogrosseto.it",
|
|
|
|
|
siteName: "Ristorante Angolo Divino",
|
|
|
|
|
type: "website",
|
|
|
|
|
images: [
|
|
|
|
|
{
|
|
|
|
|
url: "http://img.b2bpic.net/free-photo/wicker-gray-table-with-glass-gray-chairs_140725-3025.jpg",
|
|
|
|
|
alt: "Interno elegante del ristorante",
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
},
|
|
|
|
|
twitter: {
|
|
|
|
|
card: "summary_large_image",
|
|
|
|
|
title: "Ristorante Angolo Divino - Cucina Italiana",
|
|
|
|
|
description: "Prenota il tuo tavolo nel nostro autentico ristorante italiano a Grosseto.",
|
|
|
|
|
images: ["http://img.b2bpic.net/free-photo/wicker-gray-table-with-glass-gray-chairs_140725-3025.jpg"],
|
|
|
|
|
},
|
|
|
|
|
robots: {
|
|
|
|
|
index: true,
|
|
|
|
|
follow: true,
|
|
|
|
|
},
|
|
|
|
|
};
|
|
|
|
|
title: "Ristorante Angolo Divino", description: "Autentica cucina italiana a Grosseto"};
|
|
|
|
|
|
|
|
|
|
export default function RootLayout({
|
|
|
|
|
children,
|
|
|
|
|
}: Readonly<{
|
|
|
|
|
}: {
|
|
|
|
|
children: React.ReactNode;
|
|
|
|
|
}>) {
|
|
|
|
|
}) {
|
|
|
|
|
return (
|
|
|
|
|
<html lang="en" suppressHydrationWarning>
|
|
|
|
|
<ServiceWrapper>
|
|
|
|
|
<body
|
|
|
|
|
className={`${halant.variable} ${inter.variable} ${lato.variable} antialiased`}
|
|
|
|
|
>
|
|
|
|
|
<Tag />
|
|
|
|
|
{children}
|
|
|
|
|
|
|
|
|
|
<html lang="it">
|
|
|
|
|
<body className={inter.className}>{children}
|
|
|
|
|
<script
|
|
|
|
|
dangerouslySetInnerHTML={{
|
|
|
|
|
__html: `
|
|
|
|
|
@@ -1437,7 +1382,6 @@ export default function RootLayout({
|
|
|
|
|
}}
|
|
|
|
|
/>
|
|
|
|
|
</body>
|
|
|
|
|
</ServiceWrapper>
|
|
|
|
|
</html>
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|