Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 2dc357ab74 | |||
| 660642f93a | |||
| d44b5bb684 |
@@ -1,54 +1,22 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from 'next';
|
||||||
import { Halant } 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 halant = Halant({
|
const inter = Inter({ subsets: ['latin'] });
|
||||||
variable: "--font-halant", subsets: ["latin"],
|
|
||||||
weight: ["300", "400", "500", "600", "700"],
|
|
||||||
});
|
|
||||||
|
|
||||||
const inter = Inter({
|
|
||||||
variable: "--font-inter", subsets: ["latin"],
|
|
||||||
});
|
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
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"),
|
title: 'Natural History Museum Mysuru',
|
||||||
alternates: {
|
description: 'Explore the wonders of natural history and discover fossils, animals, insects, and evolution.',
|
||||||
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"]
|
|
||||||
}
|
|
||||||
};
|
};
|
||||||
|
|
||||||
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" suppressHydrationWarning>
|
||||||
<ServiceWrapper>
|
<body className={inter.className}>{children}
|
||||||
<body
|
|
||||||
className={`${halant.variable} ${inter.variable} antialiased`}
|
|
||||||
>
|
|
||||||
<Tag />
|
|
||||||
{children}
|
|
||||||
|
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
__html: `
|
__html: `
|
||||||
@@ -1416,7 +1384,6 @@ export default function RootLayout({
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</body>
|
</body>
|
||||||
</ServiceWrapper>
|
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -211,7 +211,7 @@ export default function LandingPage() {
|
|||||||
animationType="smooth"
|
animationType="smooth"
|
||||||
faqs={[
|
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."
|
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