From b04797a055d49f8178a2c08479c9c05674bc3c67 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 5 Mar 2026 08:07:26 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 49 ++++++++++++---------------------------------- 1 file changed, 12 insertions(+), 37 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 9830cbf..b38e19b 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,52 +1,28 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } 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 geistMono = Geist_Mono({ + variable: "--font-geist-mono", subsets: ["latin"], }); export const metadata: Metadata = { - title: "D.A.V. Inter College Mau - Best School for Class 6-12", description: "Trusted inter college in Mau offering quality education for Class 6-12 under UP Board. Affordable fees, modern facilities, experienced faculty. 4.1★ rating. Admissions open.", keywords: "school in Mau, best college Mau, UP board school, class 6-12 admission, education Mau, affordable school fees, inter college", metadataBase: new URL("https://www.davcollege-mau.edu.in"), - alternates: { - canonical: "https://www.davcollege-mau.edu.in"}, - openGraph: { - title: "D.A.V. Inter College Mau - Quality Education for Your Future", description: "Enroll in Mau's most trusted inter college. Expert faculty, modern facilities, affordable fees. Join hundreds of successful students.", url: "https://www.davcollege-mau.edu.in", siteName: "D.A.V. Inter College Mau", type: "website", images: [ - { - url: "https://www.davcollege-mau.edu.in/og-hero.jpg", alt: "D.A.V. Inter College Building"}, - ], - }, - twitter: { - card: "summary_large_image", title: "D.A.V. Inter College Mau - Quality Education", description: "Trusted school for Class 6-12 in Mau with affordable fees and modern facilities. Admissions open.", images: ["https://www.davcollege-mau.edu.in/twitter-hero.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "D.A.V. Inter College", description: "Quality education for Class 6-12 in Mau"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + + {children} +