diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 842a3a2..e69de29 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1427 +0,0 @@ -import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Archivo } 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 archivo = Archivo({ - variable: "--font-archivo", subsets: ["latin"], -}); - -export const metadata: Metadata = { - title: "Jungle Book Farm & Sports Club - Adventure Resort Wadgaon", description: "Experience ultimate adventure and luxury at Jungle Book. Trekking, zip-lining, swimming, and cultural activities in Maharashtra's pristine jungle landscape.", keywords: "jungle resort, adventure resort Wadgaon, Maharashtra, trekking, zip-line, swimming pool, luxury resort, eco-tourism, sports club", metadataBase: new URL("https://junglebook.com"), - alternates: { - canonical: "https://junglebook.com" - }, - openGraph: { - title: "Jungle Book Farm & Sports Club - Premium Adventure Resort", description: "Escape to paradise. Adventure activities, luxury accommodation, and jungle dining in Wadgaon, Maharashtra.", url: "https://junglebook.com", siteName: "Jungle Book", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/husband-helping-his-wife-with-rope-park_23-2147562498.jpg", alt: "luxury jungle resort natural landscape" - } - ] - }, - twitter: { - card: "summary_large_image", title: "Jungle Book Farm & Sports Club", description: "Premium adventure resort in Maharashtra with trekking, zip-lining, and luxury facilities.", images: ["http://img.b2bpic.net/free-photo/husband-helping-his-wife-with-rope-park_23-2147562498.jpg"] - }, - robots: { - index: true, - follow: true - } -}; - -export default function RootLayout({ - children, -}: Readonly<{ - children: React.ReactNode; -}>) { - return ( - - - - - {children} - -