From 143d59032652045611ba1996e88c8aaea5eea2d1 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 5 Mar 2026 18:30:45 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 62 ++++++---------------------------------------- 1 file changed, 7 insertions(+), 55 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 353c25b..8c8acb1 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,67 +1,20 @@ import type { Metadata } from "next"; -import { Public_Sans } from "next/font/google"; import { Inter } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -const publicSans = Public_Sans({ - variable: "--font-public-sans", - subsets: ["latin"], -}); - -const inter = Inter({ - variable: "--font-inter", - subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "National Model High School | Premier Education in Kolkata", - description: "NMHS offers premium education with academic excellence, modern facilities, and holistic development for students. Trusted by 2500+ families since 1995.", - keywords: "school, education, Kolkata, NMHS, high school, academics, admissions", - metadataBase: new URL("https://nmhs.edu"), - alternates: { - canonical: "https://nmhs.edu", - }, - openGraph: { - title: "National Model High School", - description: "Excellence in Education Since 1995", - url: "https://nmhs.edu", - siteName: "National Model High School", - type: "website", - images: [ - { - url: "http://img.b2bpic.net/free-photo/multiethnic-group-students-library-participate-lesson-with-doctor_482257-118528.jpg", - alt: "NMHS Campus", - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "National Model High School", - description: "Premier educational institution in Kolkata", - images: ["http://img.b2bpic.net/free-photo/multiethnic-group-students-library-participate-lesson-with-doctor_482257-118528.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "National Model High School", description: "Excellence in Education Since 1995"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}