|
|
|
|
@@ -1,59 +1,28 @@
|
|
|
|
|
import type { Metadata } from "next";
|
|
|
|
|
import { Manrope } from "next/font/google";
|
|
|
|
|
import { DM_Sans } from "next/font/google";
|
|
|
|
|
import { Halant } from "next/font/google";
|
|
|
|
|
import { Inter } from "next/font/google";
|
|
|
|
|
import { Geist, Geist_Mono } from "next/font/google";
|
|
|
|
|
import "./globals.css";
|
|
|
|
|
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
|
|
|
|
import Tag from "@/tag/Tag";
|
|
|
|
|
|
|
|
|
|
const manrope = Manrope({
|
|
|
|
|
variable: "--font-manrope", subsets: ["latin"],
|
|
|
|
|
const geist = Geist({
|
|
|
|
|
variable: "--font-geist-sans", subsets: ["latin"],
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
const dmSans = DM_Sans({
|
|
|
|
|
variable: "--font-dm-sans", subsets: ["latin"],
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
const halant = Halant({
|
|
|
|
|
variable: "--font-halant", subsets: ["latin"],
|
|
|
|
|
weight: ["300", "400", "500", "600", "700"],
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
const inter = Inter({
|
|
|
|
|
variable: "--font-inter", subsets: ["latin"],
|
|
|
|
|
const geistMono = Geist_Mono({
|
|
|
|
|
variable: "--font-geist-mono", subsets: ["latin"],
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
export const metadata: Metadata = {
|
|
|
|
|
title: "Sun Ravintola - Kiinalainen Buffet Mänttä-Vilppulassa", description: "Monipuolinen kiinalainen buffet-ravintola Mänttä-Vilppulassa. Tuoreet raaka-aineet, sushi ja lämpimät ruoat. Varaa pöytä helposti puhelimitse 045 880 0266.", keywords: "kiinalainen ravintola Mänttä-Vilppula, buffet, sushi, ravintola, ruokailu", robots: {
|
|
|
|
|
index: true,
|
|
|
|
|
follow: true,
|
|
|
|
|
},
|
|
|
|
|
openGraph: {
|
|
|
|
|
title: "Sun Ravintola - Kiinalainen Buffet", description: "Tervetuloa nauttimaan runsaasta kiinalaisesta buffetista Mänttä-Vilppulassa.", url: "https://sunravintola.fi", siteName: "Sun Ravintola", type: "website", images: [
|
|
|
|
|
{
|
|
|
|
|
url: "http://img.b2bpic.net/free-photo/lot-variety-fruits-drinks-served-celebration-table_8353-9832.jpg", alt: "Sun ravintolan buffet"},
|
|
|
|
|
],
|
|
|
|
|
},
|
|
|
|
|
twitter: {
|
|
|
|
|
card: "summary_large_image", title: "Sun Ravintola - Kiinalainen Buffet", description: "Monipuolinen kiinalainen ravintola Mänttä-Vilppulassa", images: ["http://img.b2bpic.net/free-photo/lot-variety-fruits-drinks-served-celebration-table_8353-9832.jpg"],
|
|
|
|
|
},
|
|
|
|
|
};
|
|
|
|
|
title: "Sun Ravintola", description: "Monipuolinen kiinalainen buffet tuoreilla raaka-aineilla"};
|
|
|
|
|
|
|
|
|
|
export default function RootLayout({
|
|
|
|
|
children,
|
|
|
|
|
}: Readonly<{
|
|
|
|
|
}: {
|
|
|
|
|
children: React.ReactNode;
|
|
|
|
|
}>) {
|
|
|
|
|
}) {
|
|
|
|
|
return (
|
|
|
|
|
<html lang="en" suppressHydrationWarning>
|
|
|
|
|
<ServiceWrapper>
|
|
|
|
|
<body
|
|
|
|
|
className={`${manrope.variable} ${dmSans.variable} ${halant.variable} ${inter.variable} antialiased`}
|
|
|
|
|
>
|
|
|
|
|
<Tag />
|
|
|
|
|
{children}
|
|
|
|
|
|
|
|
|
|
<html lang="en">
|
|
|
|
|
<body className={`${geist.variable} ${geistMono.variable} antialiased`}>
|
|
|
|
|
{children}
|
|
|
|
|
|
|
|
|
|
<script
|
|
|
|
|
dangerouslySetInnerHTML={{
|
|
|
|
|
__html: `
|
|
|
|
|
@@ -1421,7 +1390,6 @@ export default function RootLayout({
|
|
|
|
|
}}
|
|
|
|
|
/>
|
|
|
|
|
</body>
|
|
|
|
|
</ServiceWrapper>
|
|
|
|
|
</html>
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|