diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 8816f5d..c839552 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,54 +1,28 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Open_Sans } 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 halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], +const geist = Geist({ + variable: "--font-geist-sans", subsets: ["latin"], }); -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const openSans = Open_Sans({ - variable: "--font-open-sans", subsets: ["latin"], +const geistMono = Geist_Mono({ + variable: "--font-geist-mono", subsets: ["latin"], }); 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: "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, - }, -}; + 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."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + + {children} +