Files
ec222392-f42e-4aba-9ca0-632…/src/app/layout.tsx
2026-05-02 18:33:56 +00:00

53 lines
1.4 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 { getVisualEditScript } from "@/utils/visual-edit-script";
import { Open_Sans } from "next/font/google";
export const metadata: Metadata = {
title: 'Pizza da Vincenzo | Authentisch Neapolitanisch in Arbon',
description: 'Beste neapolitanische Pizza in Arbon. Handgemacht, 48h Teigruhe, aus dem Holzofen. Jetzt bestellen bei Pizza da Vincenzo.',
openGraph: {
"title": "Pizza da Vincenzo Arbon",
"description": "Die beste authentische Pizza in Arbon.",
"type": "website",
"siteName": "Pizza da Vincenzo"
},
};
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
});
const openSans = Open_Sans({
variable: "--font-open-sans",
subsets: ["latin"],
});
export default function RootLayout({
children,
}: Readonly<{
children: React.ReactNode;
}>) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${inter.variable} ${openSans.variable} antialiased`}>
{children}
<script
dangerouslySetInnerHTML={{
__html: `${getVisualEditScript()}`
}}
/>
</body>
</ServiceWrapper>
</html>
);
}