4 Commits

Author SHA1 Message Date
72a411591f Update src/app/programs/page.tsx 2026-03-06 07:01:00 +00:00
43a7da173d Update src/app/layout.tsx 2026-03-06 07:00:59 +00:00
fc2facefad Merge version_1 into main
Merge version_1 into main
2026-03-06 06:58:40 +00:00
e582a59203 Merge version_1 into main
Merge version_1 into main
2026-03-06 06:57:45 +00:00
2 changed files with 24 additions and 68 deletions

View File

@@ -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 (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${openSans.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={`${inter.variable} antialiased`}>
{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1436,7 +1386,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}
}

View File

@@ -19,7 +19,8 @@ export default function ProgramsPage() {
];
const navButton = {
text: "Enroll Now", href: "/contact"};
text: "Enroll Now", href: "/contact"
};
const footerColumns = [
{
@@ -86,16 +87,20 @@ export default function ProgramsPage() {
mediaItems={[
{
imageSrc:
"http://img.b2bpic.net/free-photo/woman-standing-children-sitting-desks_259150-60228.jpg", imageAlt: "Interactive classroom"},
"http://img.b2bpic.net/free-photo/woman-standing-children-sitting-desks_259150-60228.jpg", imageAlt: "Interactive classroom"
},
{
imageSrc:
"http://img.b2bpic.net/free-photo/lab-assistant-with-microscope-laboratory-glassware-bulb-with-chemicals_146671-18302.jpg", imageAlt: "Science laboratory"},
"http://img.b2bpic.net/free-photo/lab-assistant-with-microscope-laboratory-glassware-bulb-with-chemicals_146671-18302.jpg", imageAlt: "Science laboratory"
},
{
imageSrc:
"http://img.b2bpic.net/free-photo/group-ethnic-multicultural-students-sitting-table-library_496169-1216.jpg", imageAlt: "Library study space"},
"http://img.b2bpic.net/free-photo/group-ethnic-multicultural-students-sitting-table-library_496169-1216.jpg", imageAlt: "Library study space"
},
{
imageSrc:
"http://img.b2bpic.net/free-photo/young-happy-students-walking-while-talking-looking-aside_171337-13421.jpg", imageAlt: "Student community"},
"http://img.b2bpic.net/free-photo/young-happy-students-walking-while-talking-looking-aside_171337-13421.jpg", imageAlt: "Student community"
},
]}
buttons={[
{ text: "Apply Now", href: "/admissions" },
@@ -113,11 +118,13 @@ export default function ProgramsPage() {
tag="Program Options"
negativeCard={{
items: [
"Limited practical application", "Narrow career focus", "Outdated curriculum", "Passive learning methods"],
"Limited practical application", "Narrow career focus", "Outdated curriculum", "Passive learning methods"
],
}}
positiveCard={{
items: [
"Comprehensive skill development", "Diverse career opportunities", "Industry-relevant content", "Experiential learning approach"],
"Comprehensive skill development", "Diverse career opportunities", "Industry-relevant content", "Experiential learning approach"
],
}}
textboxLayout="default"
useInvertedBackground={false}
@@ -151,4 +158,4 @@ export default function ProgramsPage() {
</div>
</ThemeProvider>
);
}
}