|
|
|
|
@@ -1,54 +1,22 @@
|
|
|
|
|
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";
|
|
|
|
|
import type { Metadata } from 'next';
|
|
|
|
|
import { Inter } from 'next/font/google';
|
|
|
|
|
import './globals.css';
|
|
|
|
|
|
|
|
|
|
const halant = Halant({
|
|
|
|
|
variable: "--font-halant", subsets: ["latin"],
|
|
|
|
|
weight: ["300", "400", "500", "600", "700"],
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
const inter = Inter({
|
|
|
|
|
variable: "--font-inter", subsets: ["latin"],
|
|
|
|
|
});
|
|
|
|
|
const inter = Inter({ subsets: ['latin'] });
|
|
|
|
|
|
|
|
|
|
export const metadata: Metadata = {
|
|
|
|
|
title: "Natural History Museum Mysuru - Educational Exhibits & Family Attractions", description: "Explore fascinating fossils, animal specimens, and interactive exhibits at the free Regional Museum of Natural History in Mysuru. Perfect for families and school groups.", keywords: "natural history museum Mysuru, science museum Mysore, family attractions Mysuru, educational places Mysore, fossil exhibits, interactive learning", metadataBase: new URL("https://naturalhistorymuseum-mysuru.com"),
|
|
|
|
|
alternates: {
|
|
|
|
|
canonical: "https://naturalhistorymuseum-mysuru.com"
|
|
|
|
|
},
|
|
|
|
|
robots: {
|
|
|
|
|
index: true,
|
|
|
|
|
follow: true
|
|
|
|
|
},
|
|
|
|
|
openGraph: {
|
|
|
|
|
title: "Natural History Museum Mysuru - Educational Exhibits & Family Attractions", description: "Explore fascinating fossils, animal specimens, and interactive exhibits at the free Regional Museum of Natural History in Mysuru.", url: "https://naturalhistorymuseum-mysuru.com", siteName: "Natural History Museum Mysuru", type: "website", images: [
|
|
|
|
|
{
|
|
|
|
|
url: "http://img.b2bpic.net/free-vector/flat-background-international-museum-day_23-2150260520.jpg", alt: "Natural History Museum Mysuru entrance and exhibits"
|
|
|
|
|
}
|
|
|
|
|
]
|
|
|
|
|
},
|
|
|
|
|
twitter: {
|
|
|
|
|
card: "summary_large_image", title: "Natural History Museum Mysuru - Educational Exhibits & Family Attractions", description: "Explore fascinating fossils, animal specimens, and interactive exhibits at the free Regional Museum of Natural History in Mysuru.", images: ["http://img.b2bpic.net/free-vector/flat-background-international-museum-day_23-2150260520.jpg"]
|
|
|
|
|
}
|
|
|
|
|
title: 'Natural History Museum Mysuru',
|
|
|
|
|
description: 'Explore the wonders of natural history and discover fossils, animals, insects, and evolution.',
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export default function RootLayout({
|
|
|
|
|
children,
|
|
|
|
|
}: Readonly<{
|
|
|
|
|
}: {
|
|
|
|
|
children: React.ReactNode;
|
|
|
|
|
}>) {
|
|
|
|
|
}) {
|
|
|
|
|
return (
|
|
|
|
|
<html lang="en" suppressHydrationWarning>
|
|
|
|
|
<ServiceWrapper>
|
|
|
|
|
<body
|
|
|
|
|
className={`${halant.variable} ${inter.variable} antialiased`}
|
|
|
|
|
>
|
|
|
|
|
<Tag />
|
|
|
|
|
{children}
|
|
|
|
|
|
|
|
|
|
<body className={inter.className}>{children}
|
|
|
|
|
<script
|
|
|
|
|
dangerouslySetInnerHTML={{
|
|
|
|
|
__html: `
|
|
|
|
|
@@ -1416,7 +1384,6 @@ export default function RootLayout({
|
|
|
|
|
}}
|
|
|
|
|
/>
|
|
|
|
|
</body>
|
|
|
|
|
</ServiceWrapper>
|
|
|
|
|
</html>
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|