70 lines
2.7 KiB
TypeScript
70 lines
2.7 KiB
TypeScript
import type { Metadata } from "next";
|
|
import { Halant } from "next/font/google";
|
|
import { Inter } from "next/font/google";
|
|
import "./globals.css";
|
|
import "@/lib/gsap-setup";
|
|
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
|
import Tag from "@/tag/Tag";
|
|
import { getVisualEditScript } from "@/utils/visual-edit-script";
|
|
import { Montserrat } from "next/font/google";
|
|
|
|
|
|
|
|
export const metadata: Metadata = {
|
|
title: 'Ristorante Pizzeria Stazione - Authentic Italian Cuisine in Malvaglia',
|
|
description: 'Experience the best of Italian dining at Ristorante Pizzeria Stazione in Malvaglia. Enjoy our wood-fired pizzas, fresh pasta, and traditional dishes with warm, friendly service. Dine-in or take-away available.',
|
|
keywords: ["Italian restaurant, pizzeria, Malvaglia, Switzerland, authentic Italian food, pizza, pasta, dine-in, take-away, restaurant reservation, Swiss-Italian cuisine"],
|
|
openGraph: {
|
|
"title": "Ristorante Pizzeria Stazione - Authentic Italian Cuisine",
|
|
"description": "Experience the best of Italian dining at Ristorante Pizzeria Stazione in Malvaglia. Enjoy our wood-fired pizzas, fresh pasta, and traditional dishes with warm, friendly service.",
|
|
"url": "https://ristorantestazionemalvaglia.ch",
|
|
"siteName": "Ristorante Pizzeria Stazione",
|
|
"images": [
|
|
{
|
|
"url": "http://img.b2bpic.net/free-photo/street-cafe-old-town-lindos-greek-island-rhodes-view-aegean-sea-islands-dodecanese-archipelago-europe-travel-time_166373-3822.jpg",
|
|
"alt": "Cozy interior of Ristorante Pizzeria Stazione"
|
|
}
|
|
],
|
|
"type": "website"
|
|
},
|
|
twitter: {
|
|
"card": "summary_large_image",
|
|
"title": "Ristorante Pizzeria Stazione - Authentic Italian Cuisine",
|
|
"description": "Experience the best of Italian dining at Ristorante Pizzeria Stazione in Malvaglia. Enjoy our wood-fired pizzas, fresh pasta, and traditional dishes with warm, friendly service.",
|
|
"images": [
|
|
"http://img.b2bpic.net/free-photo/street-cafe-old-town-lindos-greek-island-rhodes-view-aegean-sea-islands-dodecanese-archipelago-europe-travel-time_166373-3822.jpg"
|
|
]
|
|
},
|
|
robots: {
|
|
"index": true,
|
|
"follow": true
|
|
},
|
|
};
|
|
|
|
const montserrat = Montserrat({
|
|
variable: "--font-montserrat",
|
|
subsets: ["latin"],
|
|
});
|
|
|
|
export default function RootLayout({
|
|
children,
|
|
}: Readonly<{
|
|
children: React.ReactNode;
|
|
}>) {
|
|
return (
|
|
<html lang="en" suppressHydrationWarning>
|
|
<ServiceWrapper>
|
|
<body className={`${montserrat.variable} antialiased`}>
|
|
<Tag />
|
|
{children}
|
|
<script
|
|
dangerouslySetInnerHTML={{
|
|
__html: `${getVisualEditScript()}`
|
|
}}
|
|
/>
|
|
</body>
|
|
</ServiceWrapper>
|
|
</html>
|
|
);
|
|
}
|