From f5cf90f20968b09072a5ce58deca62a3cf77102c Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 6 Mar 2026 06:39:34 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 47 ++++++++++++---------------------------------- 1 file changed, 12 insertions(+), 35 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 33c16bb..6ab32d1 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,50 +1,28 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Inter_Tight } 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 interTight = Inter_Tight({ - variable: "--font-inter-tight", subsets: ["latin"], - weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], +const geistMono = Geist_Mono({ + variable: "--font-geist-mono", subsets: ["latin"], }); export const metadata: Metadata = { - title: "LASEA - Premier CBSE School for Excellence in Education", description: "Lady Anusuya Singhania Educational Academy - A leading CBSE school committed to academic excellence, innovation, and character development for over 35 years.", keywords: "CBSE school, education, admissions, secondary education, academic excellence, school in India", robots: { - index: true, - follow: true, - }, - openGraph: { - title: "LASEA - Premier CBSE School", description: "Experience excellence in education at Lady Anusuya Singhania Educational Academy", siteName: "LASEA Academy", type: "website"}, - twitter: { - card: "summary_large_image", title: "LASEA - Premier CBSE School", description: "Leading educational institution dedicated to shaping future leaders"}, -}; + title: "LASEA - Premier CBSE School", description: "Lady Anusuya Singhania Educational Academy - Leading educational excellence since 1986"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + + {children} +