diff --git a/src/app/layout.tsx b/src/app/layout.tsx index e4b64c9..b5949a9 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1434 +1,27 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Roboto } from "next/font/google"; +import { Geist, Geist_Mono } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -const halant = Halant({ - variable: "--font-halant", - subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], +const geist = Geist({ + variable: "--font-geist-sans", subsets: ["latin"], }); -const inter = Inter({ - variable: "--font-inter", - subsets: ["latin"], -}); - -const roboto = Roboto({ - variable: "--font-roboto", - subsets: ["latin"], - weight: ["100", "300", "400", "500", "700", "900"], +const geistMono = Geist_Mono({ + variable: "--font-geist-mono", subsets: ["latin"], }); export const metadata: Metadata = { - title: "Sri Venkateshwara Matriculation Higher Secondary School - Vandavasi", - description: "Quality education in Vandavasi. Admissions open for matriculation and higher secondary. Best school with experienced teachers, modern facilities, and strong discipline. Call +91 99429 11419 today.", - keywords: "matriculation school Vandavasi, higher secondary school, best school near me, English medium school, education Tamil Nadu, admissions open", - metadataBase: new URL("https://srivenkateshwara.edu.in"), - alternates: { - canonical: "https://srivenkateshwara.edu.in", - }, - openGraph: { - title: "Sri Venkateshwara School - Quality Education in Vandavasi", - description: "Enroll your child in our ICSE-affiliated school with modern infrastructure and proven academic excellence. Admissions now open.", - url: "https://srivenkateshwara.edu.in", - siteName: "Sri Venkateshwara Matriculation Higher Secondary School", - type: "website", - }, - twitter: { - card: "summary_large_image", - title: "Sri Venkateshwara School - Quality Education Vandavasi", - description: "Trusted by 2000+ families. Modern facilities, experienced faculty, strong discipline. Admissions open.", - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Sri Venkateshwara Matriculation Higher Secondary School", description: "Quality education for a bright future in Vandavasi"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -