From ddad14cd10b26939ca66dca6750935b6e25c4d62 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 6 Mar 2026 14:24:41 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 45 +++++---------------------------------------- 1 file changed, 5 insertions(+), 40 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index a0200e7..b812044 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,54 +1,20 @@ import type { Metadata } from "next"; -import { Libre_Baskerville } from "next/font/google"; import { Inter } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -const libreBaskerville = Libre_Baskerville({ - variable: "--font-libre-baskerville", subsets: ["latin"], - weight: ["400", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "SLATE - Premium ICSE & Cambridge School in Ameerpet", description: "SLATE School in Ameerpet offers academic excellence with ethical education. ICSE & Cambridge curriculum, world-class facilities, trusted by 500+ families.", keywords: "ICSE school Ameerpet, Cambridge school Hyderabad, best school Ameerpet, ethical education, academic excellence", metadataBase: new URL("https://slate-school.edu.in"), - alternates: { - canonical: "https://slate-school.edu.in" - }, - openGraph: { - title: "SLATE - The School in Ameerpet | Excellence in Education", description: "Leading ICSE & Cambridge school combining academic rigor with ethical values and future-ready learning.", url: "https://slate-school.edu.in", siteName: "SLATE School", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/large-modern-office-building_1127-2838.jpg", alt: "SLATE School Campus" - } - ] - }, - twitter: { - card: "summary_large_image", title: "SLATE - Premium School in Ameerpet", description: "Academic excellence meets ethical education. ICSE & Cambridge curriculum.", images: ["http://img.b2bpic.net/free-photo/large-modern-office-building_1127-2838.jpg"] - }, - robots: { - index: true, - follow: true - } -}; + title: "SLATE School - Excellence in Education", description: "SLATE combines academic excellence with ethical education and future-ready learning. Discover why families trust us to nurture confident, compassionate, and capable learners."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - {children} - + {children}