Merge version_1 into main

Merge version_1 into main
This commit was merged in pull request #2.
This commit is contained in:
2026-03-06 06:58:40 +00:00

View File

@@ -6,7 +6,7 @@ import HeroBillboardGallery from "@/components/sections/hero/HeroBillboardGaller
import FeatureCardSixteen from "@/components/sections/feature/FeatureCardSixteen";
import MetricCardThree from "@/components/sections/metrics/MetricCardThree";
import FooterBaseCard from "@/components/sections/footer/FooterBaseCard";
import { BookOpen, Flask, TrendingUp, Users } from "lucide-react";
import { BookOpen, Beaker, TrendingUp, Users } from "lucide-react";
import Link from "next/link";
export default function ProgramsPage() {
@@ -19,14 +19,11 @@ export default function ProgramsPage() {
];
const navButton = {
text: "Enroll Now",
href: "/contact",
};
text: "Enroll Now", href: "/contact"};
const footerColumns = [
{
title: "Programs",
items: [
title: "Programs", items: [
{ label: "Bachelor of Science", href: "/programs" },
{ label: "Bachelor of Commerce", href: "/programs" },
{ label: "Master's Programs", href: "/programs" },
@@ -34,8 +31,7 @@ export default function ProgramsPage() {
],
},
{
title: "About",
items: [
title: "About", items: [
{ label: "Our Mission", href: "/about" },
{ label: "Faculty", href: "/about" },
{ label: "Infrastructure", href: "/about" },
@@ -43,8 +39,7 @@ export default function ProgramsPage() {
],
},
{
title: "Student Life",
items: [
title: "Student Life", items: [
{ label: "Campus Activities", href: "/contact" },
{ label: "Hostel Facilities", href: "/contact" },
{ label: "Sports & Recreation", href: "/contact" },
@@ -52,8 +47,7 @@ export default function ProgramsPage() {
],
},
{
title: "Connect",
items: [
title: "Connect", items: [
{ label: "Contact Us", href: "/contact" },
{ label: "Facebook", href: "https://facebook.com/lucsedu" },
{ label: "Instagram", href: "https://instagram.com/lucsedu" },
@@ -92,24 +86,16 @@ export default function ProgramsPage() {
mediaItems={[
{
imageSrc:
"http://img.b2bpic.net/free-photo/woman-standing-children-sitting-desks_259150-60228.jpg?_wi=2",
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?_wi=2",
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?_wi=2",
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?_wi=2",
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" },
@@ -127,19 +113,11 @@ 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,7 +129,7 @@ export default function ProgramsPage() {
<MetricCardThree
metrics={[
{ id: "1", icon: BookOpen, title: "Programs Offered", value: "25+" },
{ id: "2", icon: Flask, title: "Labs & Facilities", value: "40+" },
{ id: "2", icon: Beaker, title: "Labs & Facilities", value: "40+" },
{ id: "3", icon: TrendingUp, title: "Career Success", value: "95%" },
{ id: "4", icon: Users, title: "Active Students", value: "5,000+" },
]}