Files
c9bc82f9-0163-41b2-a1d8-015…/src/app/programs/page.tsx

176 lines
6.3 KiB
TypeScript

"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleCentered from "@/components/navbar/NavbarStyleCentered/NavbarStyleCentered";
import HeroBillboardGallery from "@/components/sections/hero/HeroBillboardGallery";
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 Link from "next/link";
export default function ProgramsPage() {
const navItems = [
{ name: "Home", id: "home" },
{ name: "About", id: "about" },
{ name: "Programs", id: "features" },
{ name: "Academics", id: "metrics" },
{ name: "Testimonials", id: "testimonials" },
];
const navButton = {
text: "Enroll Now",
href: "/contact",
};
const footerColumns = [
{
title: "Programs",
items: [
{ label: "Bachelor of Science", href: "/programs" },
{ label: "Bachelor of Commerce", href: "/programs" },
{ label: "Master's Programs", href: "/programs" },
{ label: "Research Opportunities", href: "/programs" },
],
},
{
title: "About",
items: [
{ label: "Our Mission", href: "/about" },
{ label: "Faculty", href: "/about" },
{ label: "Infrastructure", href: "/about" },
{ label: "Achievements", href: "/about" },
],
},
{
title: "Student Life",
items: [
{ label: "Campus Activities", href: "/contact" },
{ label: "Hostel Facilities", href: "/contact" },
{ label: "Sports & Recreation", href: "/contact" },
{ label: "Student Portal", href: "https://portal.lucs.edu.in" },
],
},
{
title: "Connect",
items: [
{ label: "Contact Us", href: "/contact" },
{ label: "Facebook", href: "https://facebook.com/lucsedu" },
{ label: "Instagram", href: "https://instagram.com/lucsedu" },
{ label: "LinkedIn", href: "https://linkedin.com/school/lucs" },
],
},
];
return (
<ThemeProvider
defaultButtonVariant="shift-hover"
defaultTextAnimation="entrance-slide"
borderRadius="pill"
contentWidth="mediumSmall"
sizing="mediumSizeLargeTitles"
background="blurBottom"
cardStyle="glass-depth"
primaryButtonStyle="diagonal-gradient"
secondaryButtonStyle="radial-glow"
headingFontWeight="bold"
>
<div id="nav" data-section="nav">
<NavbarStyleCentered
navItems={navItems}
button={navButton}
brandName="LUCS"
/>
</div>
<div id="programs-hero" data-section="programs-hero">
<HeroBillboardGallery
title="Academic Programs at LUCS"
description="Discover our comprehensive range of undergraduate and postgraduate programs designed to cultivate intellectual excellence and professional readiness. From pure sciences to commerce, our programs blend traditional values with contemporary pedagogy."
tag="Diverse Learning Paths"
background={{ variant: "radial-gradient" }}
mediaItems={[
{
imageSrc:
"http://img.b2bpic.net/free-photo/woman-standing-children-sitting-desks_259150-60228.jpg?_wi=2",
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",
},
{
imageSrc:
"http://img.b2bpic.net/free-photo/group-ethnic-multicultural-students-sitting-table-library_496169-1216.jpg?_wi=2",
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",
},
]}
buttons={[
{ text: "Apply Now", href: "/admissions" },
{ text: "Download Brochure", href: "/contact" },
]}
mediaAnimation="slide-up"
buttonAnimation="slide-up"
/>
</div>
<div id="programs-comparison" data-section="programs-comparison">
<FeatureCardSixteen
title="Science vs Commerce Pathways"
description="Choose the program that aligns with your academic interests and career aspirations"
tag="Program Options"
negativeCard={{
items: [
"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",
],
}}
textboxLayout="default"
useInvertedBackground={false}
animationType="slide-up"
/>
</div>
<div id="programs-metrics" data-section="programs-metrics">
<MetricCardThree
metrics={[
{ id: "1", icon: BookOpen, title: "Programs Offered", value: "25+" },
{ id: "2", icon: Flask, title: "Labs & Facilities", value: "40+" },
{ id: "3", icon: TrendingUp, title: "Career Success", value: "95%" },
{ id: "4", icon: Users, title: "Active Students", value: "5,000+" },
]}
title="Program Statistics"
description="Comprehensive academic offerings with exceptional outcomes"
tag="Program Impact"
textboxLayout="default"
useInvertedBackground={true}
animationType="scale-rotate"
/>
</div>
<div id="footer" data-section="footer">
<FooterBaseCard
logoText="LUCS"
columns={footerColumns}
copyrightText="© 2025 Lords Universal College of Science and Commerce. All rights reserved."
/>
</div>
</ThemeProvider>
);
}