diff --git a/src/app/layout.tsx b/src/app/layout.tsx index dd5bcc4..9c94a02 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,52 +1,17 @@ import type { Metadata } from "next"; -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 halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); +import "@/styles/globals.css"; export const metadata: Metadata = { - title: "College of Management, Khamgaon | SGBAU Affiliated | Best College", description: "College of Management Khamgaon - SGBAU affiliated institution offering BCA, BBA, BA, BSc, BCom programs. ISO certified with modern facilities. Admission open. Call 07263 256566.", keywords: "college in Khamgaon, BCA college, BBA college, best college Khamgaon, SGBAU affiliated, undergraduate college, Buldhana district education", metadataBase: new URL("https://collegeofmanagementkhamgaon.edu.in"), - alternates: { - canonical: "https://collegeofmanagementkhamgaon.edu.in" - }, - openGraph: { - title: "College of Management, Khamgaon | Quality Education Since 2007", description: "Discover quality higher education at College of Management Khamgaon. Accredited programs, modern campus, and placement support.", url: "https://collegeofmanagementkhamgaon.edu.in", siteName: "College of Management Khamgaon", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/modern-amphitheater-usa_1268-14358.jpg", alt: "College of Management Khamgaon Campus" - } - ] - }, - twitter: { - card: "summary_large_image", title: "College of Management, Khamgaon", description: "Quality education with modern infrastructure. Admissions open now.", images: ["http://img.b2bpic.net/free-photo/modern-amphitheater-usa_1268-14358.jpg"] - }, - robots: { - index: true, - follow: true - } -}; + title: "College of Management, Khamgaon", description: "Quality higher education with SGBAU affiliation, modern infrastructure, and student-centric learning"}; export default function RootLayout({ - children -}: Readonly<{ + children, +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}