Merge version_2 into main #2
@@ -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>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -211,7 +211,7 @@ export default function LandingPage() {
|
||||
animationType="smooth"
|
||||
faqs={[
|
||||
{
|
||||
id: "1", title: "Is entry to the museum free?", content: "Yes! Admission to the Regional Museum of Natural History Mysuru is completely free for all visitors. We're a government-funded educational institution dedicated to making natural history accessible to everyone."
|
||||
id: "1", title: "Is entry free?", content: "Yes! Admission to the Regional Museum of Natural History Mysuru is completely free for all visitors. We're a government-funded educational institution dedicated to making natural history accessible to everyone."
|
||||
},
|
||||
{
|
||||
id: "2", title: "What are the opening hours?", content: "The museum is open from 10:00 AM to 5:30 PM daily. We are closed on Mondays and certain national holidays. We recommend visiting during off-peak hours (weekday mornings) for a more relaxed experience."
|
||||
|
||||
Reference in New Issue
Block a user