|
|
|
@@ -1,53 +1,27 @@
|
|
|
|
import type { Metadata } from "next";
|
|
|
|
import type { Metadata } from "next";
|
|
|
|
import { Halant } from "next/font/google";
|
|
|
|
import { Geist, Geist_Mono } from "next/font/google";
|
|
|
|
import { Inter } from "next/font/google";
|
|
|
|
|
|
|
|
import { Open_Sans } from "next/font/google";
|
|
|
|
|
|
|
|
import "./globals.css";
|
|
|
|
import "./globals.css";
|
|
|
|
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
|
|
|
|
|
|
|
import Tag from "@/tag/Tag";
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
const halant = Halant({
|
|
|
|
const geist = Geist({
|
|
|
|
variable: "--font-halant", subsets: ["latin"],
|
|
|
|
variable: "--font-geist-sans", subsets: ["latin"],
|
|
|
|
weight: ["300", "400", "500", "600", "700"],
|
|
|
|
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
const inter = Inter({
|
|
|
|
const geistMono = Geist_Mono({
|
|
|
|
variable: "--font-inter", subsets: ["latin"],
|
|
|
|
variable: "--font-geist-mono", subsets: ["latin"],
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
const openSans = Open_Sans({
|
|
|
|
|
|
|
|
variable: "--font-open-sans", subsets: ["latin"],
|
|
|
|
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
export const metadata: Metadata = {
|
|
|
|
export const metadata: Metadata = {
|
|
|
|
title: "Bebek Protol MasBim | Authentic Indonesian Duck in Ponorogo", description: "Experience legendary Bebek Protol at MasBim in Ponorogo. Tender, spicy duck dishes crafted with traditional Javanese recipes. Reserve your table now.", keywords: "Indonesian duck, bebek protol, Ponorogo restaurant, Javanese cuisine, authentic duck dishes, sambal, nasi bebek", openGraph: {
|
|
|
|
title: "Bebek Protol MasBim - Authentic Indonesian Duck Restaurant", description: "Experience authentic Bebek Protol at MasBim restaurant in Ponorogo. Tender, shredded duck infused with aromatic Javanese spices."};
|
|
|
|
title: "Bebek Protol MasBim | Authentic Indonesian Duck Restaurant", description: "Discover mouth-watering Bebek Protol—tender, shredded duck with aromatic spices. A culinary gem in Ponorogo.", type: "website", siteName: "Bebek Protol MasBim", images: [
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
url: "http://img.b2bpic.net/free-photo/top-view-azerbaijani-dish-bozbash-lamb-stew-with-chickpeas_140725-5086.jpg", alt: "Signature Bebek Protol dish"},
|
|
|
|
|
|
|
|
],
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
twitter: {
|
|
|
|
|
|
|
|
card: "summary_large_image", title: "Bebek Protol MasBim | Authentic Indonesian Duck", description: "Experience legendary duck dishes in Ponorogo. Authentic flavors, warm hospitality, unforgettable meals.", images: ["http://img.b2bpic.net/free-photo/top-view-azerbaijani-dish-bozbash-lamb-stew-with-chickpeas_140725-5086.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="en">
|
|
|
|
<ServiceWrapper>
|
|
|
|
<body className={`${geist.variable} ${geistMono.variable} antialiased`}>
|
|
|
|
<body
|
|
|
|
{children}
|
|
|
|
className={`${halant.variable} ${inter.variable} ${openSans.variable} antialiased`}
|
|
|
|
|
|
|
|
>
|
|
|
|
|
|
|
|
<Tag />
|
|
|
|
|
|
|
|
{children}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<script
|
|
|
|
<script
|
|
|
|
dangerouslySetInnerHTML={{
|
|
|
|
dangerouslySetInnerHTML={{
|
|
|
|
@@ -1416,7 +1390,6 @@ export default function RootLayout({
|
|
|
|
}}
|
|
|
|
}}
|
|
|
|
/>
|
|
|
|
/>
|
|
|
|
</body>
|
|
|
|
</body>
|
|
|
|
</ServiceWrapper>
|
|
|
|
|
|
|
|
</html>
|
|
|
|
</html>
|
|
|
|
);
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|