diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 54d36d5..6f2c0c4 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,61 +1,20 @@ import type { Metadata } from "next"; -import { Montserrat, Inter } from "next/font/google"; +import { Inter } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -const montserrat = Montserrat({ - variable: "--font-montserrat", - subsets: ["latin"], -}); - -const inter = Inter({ - variable: "--font-inter", - subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "New Era Public School - Quality English Medium Education in Khammam", - description: "New Era Public School offers excellent English medium education in Kaviraj Nagar, Khammam with 4.1★ rating. Modern facilities, expert faculty, and holistic development for students.", - keywords: "school, Khammam, English medium, admissions, education, NEPS", - openGraph: { - title: "New Era Public School - Excellence in Education", - description: "Empowering minds, shaping futures with world-class education facilities", - siteName: "New Era Public School", - type: "website", - images: [ - { - url: "http://img.b2bpic.net/free-vector/school-building-background_1284-52250.jpg", - alt: "New Era Public School Campus", - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "New Era Public School Khammam", - description: "Quality English Medium Education with 4.1★ Rating", - images: ["http://img.b2bpic.net/free-vector/school-building-background_1284-52250.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "New Era Public School", description: "New Era Public School - Empowering minds, shaping futures"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}