|
|
|
|
@@ -1,52 +1,20 @@
|
|
|
|
|
import type { Metadata } from "next";
|
|
|
|
|
import { Libre_Baskerville } from "next/font/google";
|
|
|
|
|
import { Inter } from "next/font/google";
|
|
|
|
|
import "./globals.css";
|
|
|
|
|
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
|
|
|
|
import Tag from "@/tag/Tag";
|
|
|
|
|
|
|
|
|
|
const libreBaskerville = Libre_Baskerville({
|
|
|
|
|
variable: "--font-libre-baskerville", subsets: ["latin"],
|
|
|
|
|
weight: ["400", "700"],
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
const inter = Inter({
|
|
|
|
|
variable: "--font-inter", subsets: ["latin"],
|
|
|
|
|
});
|
|
|
|
|
const inter = Inter({ subsets: ["latin"] });
|
|
|
|
|
|
|
|
|
|
export const metadata: Metadata = {
|
|
|
|
|
title: "Dalma Wildlife Sanctuary | Safari & Trekking Jamshedpur", description: "Explore Dalma Wildlife Sanctuary near Jamshedpur. Experience elephant safaris, forest trekking, and temple hill views. Book your adventure today.", keywords: "Dalma Wildlife Sanctuary, safari Jamshedpur, trekking near Jamshedpur, elephant sanctuary Jharkhand, wildlife tour Jharkhand", metadataBase: new URL("https://www.dalmawidlifesanctuary.com"),
|
|
|
|
|
alternates: {
|
|
|
|
|
canonical: "https://www.dalmawidlifesanctuary.com"},
|
|
|
|
|
openGraph: {
|
|
|
|
|
title: "Dalma Wildlife Sanctuary - Explore Nature's Paradise", description: "Discover elephants, forest trails, and stunning views at Dalma Wildlife Sanctuary. Plan your wildlife adventure near Jamshedpur.", url: "https://www.dalmawidlifesanctuary.com", siteName: "Dalma Wildlife Sanctuary", type: "website", images: [
|
|
|
|
|
{
|
|
|
|
|
url: "http://img.b2bpic.net/free-photo/wild-indian-elephant-male-with-nature-habitat-northern-india_475641-853.jpg", alt: "Dalma Wildlife Sanctuary - Wild Elephants and Forest"},
|
|
|
|
|
],
|
|
|
|
|
},
|
|
|
|
|
twitter: {
|
|
|
|
|
card: "summary_large_image", title: "Dalma Wildlife Sanctuary - Safari & Trekking Adventure", description: "Experience wildlife safaris and forest trekking at Dalma Wildlife Sanctuary near Jamshedpur.", images: ["http://img.b2bpic.net/free-photo/wild-indian-elephant-male-with-nature-habitat-northern-india_475641-853.jpg"],
|
|
|
|
|
},
|
|
|
|
|
robots: {
|
|
|
|
|
index: true,
|
|
|
|
|
follow: true,
|
|
|
|
|
},
|
|
|
|
|
};
|
|
|
|
|
title: "Dalma Wildlife Sanctuary", description: "Explore nature at Dalma Wildlife Sanctuary near Jamshedpur. Discover elephants, forest trekking trails, and breathtaking hilltop views."};
|
|
|
|
|
|
|
|
|
|
export default function RootLayout({
|
|
|
|
|
children,
|
|
|
|
|
}: Readonly<{
|
|
|
|
|
}: {
|
|
|
|
|
children: React.ReactNode;
|
|
|
|
|
}>) {
|
|
|
|
|
}) {
|
|
|
|
|
return (
|
|
|
|
|
<html lang="en" suppressHydrationWarning>
|
|
|
|
|
<ServiceWrapper>
|
|
|
|
|
<body
|
|
|
|
|
className={`${libreBaskerville.variable} ${inter.variable} antialiased`}
|
|
|
|
|
>
|
|
|
|
|
<Tag />
|
|
|
|
|
{children}
|
|
|
|
|
|
|
|
|
|
<html lang="en">
|
|
|
|
|
<body className={inter.className}>{children}
|
|
|
|
|
<script
|
|
|
|
|
dangerouslySetInnerHTML={{
|
|
|
|
|
__html: `
|
|
|
|
|
@@ -1414,7 +1382,6 @@ export default function RootLayout({
|
|
|
|
|
}}
|
|
|
|
|
/>
|
|
|
|
|
</body>
|
|
|
|
|
</ServiceWrapper>
|
|
|
|
|
</html>
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|