import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } 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"], }); export const metadata: Metadata = { title: "Jadoowala Drinks | Authentic Indian Beverages", description: "Experience the magic of taste with Jadoowala Drinks. Authentic Indian beverages crafted with natural ingredients and traditional recipes.", keywords: "Indian drinks, authentic beverages, jeera water, mango juice, natural drinks, traditional recipes, refreshing drinks", openGraph: { title: "Jadoowala Drinks | The Magic of Taste", description: "Discover authentic Indian beverages crafted with passion and pure natural ingredients.", type: "website", siteName: "Jadoowala Drinks", images: [ { url: "http://img.b2bpic.net/free-photo/citrus-fruit-drinks-table_23-2148606486.jpg", alt: "Jadoowala Drinks Collection" } ] }, twitter: { card: "summary_large_image", title: "Jadoowala Drinks | Authentic Indian Beverages", description: "Experience the magic of taste with natural ingredients and traditional recipes.", images: ["http://img.b2bpic.net/free-photo/citrus-fruit-drinks-table_23-2148606486.jpg"] } }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children}