diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 577fa52..16c3932 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,58 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Raleway } 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 raleway = Raleway({ - variable: "--font-raleway", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Nirmala Convent English Medium School | Quality Education with Values", description: "Nirmala Convent School offers quality education with strong moral values in a nurturing, disciplined environment. Academic excellence, character formation, and holistic student development.", keywords: "school, education, admissions, academic excellence, character formation, Balehonnur, Karnataka", metadataBase: new URL("https://nirmalconventschool.edu"), - alternates: { - canonical: "https://nirmalconventschool.edu"}, - openGraph: { - title: "Nirmala Convent English Medium School", description: "Quality Education with Strong Moral Values - Academic Excellence, Character Formation & Holistic Development", url: "https://nirmalconventschool.edu", siteName: "Nirmala Convent School", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/row-multiethnic-elementary-students-reading-book-classroom-vintage-effect-style-pictures_1253-1577.jpg", alt: "Nirmala Convent School Campus"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Nirmala Convent English Medium School", description: "Quality Education with Strong Moral Values", images: [ - "http://img.b2bpic.net/free-photo/row-multiethnic-elementary-students-reading-book-classroom-vintage-effect-style-pictures_1253-1577.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Nirmala Convent School", description: "Quality Education with Strong Moral Values - Nirmala Convent English Medium School"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}