import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; import { Manrope } 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 inter = Inter({ variable: "--font-inter", subsets: ["latin"], }); const manrope = Manrope({ variable: "--font-manrope", subsets: ["latin"], }); export const metadata: Metadata = { title: "Pakka Local - Authentic Regional Restaurant in Banjara Hills, Hyderabad", description: "Experience authentic regional cuisine at Pakka Local in Banjara Hills. Outdoor seating, private dining, all-you-can-eat options. Call 096140 30405 to reserve your table.", keywords: "regional restaurant Hyderabad, authentic cuisine Banjara Hills, private dining Hyderabad, outdoor restaurant seating, all-you-can-eat restaurant", openGraph: { title: "Pakka Local - Authentic Regional Restaurant", description: "Experience authentic regional cuisine in Banjara Hills. Outdoor seating, private dining, and unforgettable flavors await.", type: "website", siteName: "Pakka Local"}, robots: { index: true, follow: true, }, }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children}