diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 9cdc71b..fa5dcb8 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,74 +1,24 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Open_Sans } 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"], -}); - -const openSans = Open_Sans({ - variable: "--font-open-sans", - subsets: ["latin"], + variable: "--font-inter", subsets: ["latin"], }); export const metadata: Metadata = { - title: "Lords Universal College of Science & Commerce | Premier Education", - description: "Experience world-class education at Lords Universal College. Premier science and commerce programs with 95% placement rate and modern campus facilities.", - keywords: "college, science, commerce, education, admissions, university, India", - metadataBase: new URL("https://lucs.edu.in"), - alternates: { - canonical: "https://lucs.edu.in", - }, - openGraph: { - title: "Lords Universal College of Science & Commerce", - description: "Cultivating academic excellence and innovation for generations", - url: "https://lucs.edu.in", - siteName: "Lords Universal College", - type: "website", - images: [ - { - url: "http://img.b2bpic.net/free-photo/building_1127-3357.jpg", - alt: "Lords Universal College Campus", - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "Lords Universal College of Science & Commerce", - description: "Premier education institution with world-class facilities", - images: ["http://img.b2bpic.net/free-photo/building_1127-3357.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "LUCS - Lords Universal College of Science and Commerce", description: "Discover our comprehensive range of undergraduate and postgraduate programs designed to cultivate intellectual excellence."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + + {children} +