From 660642f93a048ffa2c1242b24414800827930f47 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 5 Mar 2026 15:43:25 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 51 ++++++++-------------------------------------- 1 file changed, 9 insertions(+), 42 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 14e5d02..d667a24 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -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 ( - - - - {children} - + {children}