From 9b4cee38bee62c2819d73dfa2141077ceebaa01d Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 7 Mar 2026 19:23:52 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 1437 +------------------------------------------- 1 file changed, 8 insertions(+), 1429 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 38f112d..4f99b56 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1440 +1,20 @@ import type { Metadata } from "next"; -import { Montserrat, Inter } from "next/font/google"; -import { Halant } from "next/font/google"; +import { Inter } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -const montserrat = Montserrat({ - variable: "--font-montserrat", - subsets: ["latin"], -}); - -const inter = Inter({ - variable: "--font-inter", - subsets: ["latin"], -}); - -const halant = Halant({ - variable: "--font-halant", - subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "SR Group of Institutions - Best Engineering & MBA College in Lucknow", - description: "Top-ranked engineering and management college in Lucknow. Admissions open for B.Tech, MBA, and Polytechnic. Modern infrastructure, 95% placement rate, AICTE approved. Call +91 97930 00005", - keywords: "engineering college Lucknow, best B.Tech college, MBA college Lucknow, polytechnic Lucknow, AICTE approved, placement college, SR Group", - metadataBase: new URL("https://srgilucknow.in"), - alternates: { - canonical: "https://srgilucknow.in", - }, - openGraph: { - title: "SR Group of Institutions - Engineering & Management Education", - description: "Join SR Group for quality education in Lucknow. Admissions open for B.Tech, MBA, Polytechnic with excellent placements and modern campus.", - url: "https://srgilucknow.in", - siteName: "SR Group of Institutions", - type: "website", - images: [ - { - url: "https://srgilucknow.in/og-image.jpg", - alt: "SR Group of Institutions Campus", - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "SR Group of Institutions - Best College in Lucknow", - description: "Quality engineering & management education. Modern infrastructure, experienced faculty, 95% placement. Call admissions: +91 97930 00005", - images: ["https://srgilucknow.in/twitter-image.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "SR Group of Institutions", description: "Top Engineering & Management College in Lucknow"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -