Compare commits
8 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 56bc77d59c | |||
| 1634ddcc04 | |||
| d706bf5063 | |||
| be60266078 | |||
| 9657a9de87 | |||
| d324fec838 | |||
| 46f58eaefc | |||
| 0acadb552a |
@@ -1,52 +1,20 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { Libre_Baskerville } from "next/font/google";
|
|
||||||
import { Inter } from "next/font/google";
|
import { Inter } from "next/font/google";
|
||||||
import "./globals.css";
|
import "./globals.css";
|
||||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
|
||||||
import Tag from "@/tag/Tag";
|
|
||||||
|
|
||||||
const libreBaskerville = Libre_Baskerville({
|
const inter = Inter({ subsets: ["latin"] });
|
||||||
variable: "--font-libre-baskerville", subsets: ["latin"],
|
|
||||||
weight: ["400", "700"],
|
|
||||||
});
|
|
||||||
|
|
||||||
const inter = Inter({
|
|
||||||
variable: "--font-inter", subsets: ["latin"],
|
|
||||||
});
|
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
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"),
|
title: "Dalma Wildlife Sanctuary", description: "Explore nature at Dalma Wildlife Sanctuary near Jamshedpur. Discover elephants, forest trekking trails, and breathtaking hilltop views."};
|
||||||
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,
|
|
||||||
},
|
|
||||||
};
|
|
||||||
|
|
||||||
export default function RootLayout({
|
export default function RootLayout({
|
||||||
children,
|
children,
|
||||||
}: Readonly<{
|
}: {
|
||||||
children: React.ReactNode;
|
children: React.ReactNode;
|
||||||
}>) {
|
}) {
|
||||||
return (
|
return (
|
||||||
<html lang="en" suppressHydrationWarning>
|
<html lang="en">
|
||||||
<ServiceWrapper>
|
<body className={inter.className}>{children}
|
||||||
<body
|
|
||||||
className={`${libreBaskerville.variable} ${inter.variable} antialiased`}
|
|
||||||
>
|
|
||||||
<Tag />
|
|
||||||
{children}
|
|
||||||
|
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
__html: `
|
__html: `
|
||||||
@@ -1414,7 +1382,6 @@ export default function RootLayout({
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</body>
|
</body>
|
||||||
</ServiceWrapper>
|
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
@@ -146,7 +146,7 @@ export default function LandingPage() {
|
|||||||
imageSrc="http://img.b2bpic.net/free-photo/wild-indian-elephant-male-with-nature-habitat-northern-india_475641-853.jpg?_wi=2"
|
imageSrc="http://img.b2bpic.net/free-photo/wild-indian-elephant-male-with-nature-habitat-northern-india_475641-853.jpg?_wi=2"
|
||||||
imageAlt="Majestic elephant in natural habitat at Dalma Wildlife Sanctuary"
|
imageAlt="Majestic elephant in natural habitat at Dalma Wildlife Sanctuary"
|
||||||
buttons={[
|
buttons={[
|
||||||
{ text: "Call Now", href: "tel:+91XXXXXXXXXX" },
|
{ text: "Book Your Safari Now", href: "tel:+91XXXXXXXXXX" },
|
||||||
{ text: "Plan Your Visit", href: "#contact" },
|
{ text: "Plan Your Visit", href: "#contact" },
|
||||||
]}
|
]}
|
||||||
buttonAnimation="slide-up"
|
buttonAnimation="slide-up"
|
||||||
@@ -277,4 +277,4 @@ export default function LandingPage() {
|
|||||||
</div>
|
</div>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user