diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 2932f04..e38be61 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1425 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Poppins } 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 inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const poppins = Poppins({ - variable: "--font-poppins", subsets: ["latin"], - weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Sarvodaya Schools & Colleges | Premium Education Excellence", description: "Leading educational institution offering exceptional academics from primary to higher secondary. 25+ years of excellence, world-class facilities, and holistic student development.", keywords: "school, college, education, admissions, academics, CBSE, Cambridge, higher secondary, vocational training", metadataBase: new URL("https://sarvodayaschools.edu"), - alternates: { - canonical: "https://sarvodayaschools.edu"}, - openGraph: { - title: "Sarvodaya Schools & Colleges - Empowering Minds", description: "Discover premier education with 25+ years of excellence. Comprehensive academics, state-of-the-art facilities, and transformative learning experiences.", url: "https://sarvodayaschools.edu", siteName: "Sarvodaya Schools & Colleges", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-vector/school-building-road-scene_25030-39827.jpg", alt: "Sarvodaya campus"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Sarvodaya Schools & Colleges", description: "Excellence in education since 1998", images: ["http://img.b2bpic.net/free-vector/school-building-road-scene_25030-39827.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Sarvodaya Schools & Colleges", description: "Empowering minds, enlightening futures through excellence in education"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -