"use client"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarStyleApple from "@/components/navbar/NavbarStyleApple/NavbarStyleApple"; import FeatureCardSix from "@/components/sections/feature/FeatureCardSix"; import MetricCardThree from "@/components/sections/metrics/MetricCardThree"; import PricingCardTwo from "@/components/sections/pricing/PricingCardTwo"; import FooterBaseReveal from "@/components/sections/footer/FooterBaseReveal"; import { BookOpen, Beaker, TrendingUp, Users, Award, Zap } from "lucide-react"; export default function ProgramsPage() { const navItems = [ { name: "Home", id: "/" }, { name: "About", id: "/" }, { name: "Programs", id: "#programs" }, { name: "Why LUCS", id: "/" }, { name: "Contact", id: "/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: "/" }, { label: "Faculty", href: "/" }, { label: "Infrastructure", href: "/" }, { label: "Achievements", href: "/" }, ], }, { title: "Student Life", items: [ { label: "Campus Activities", href: "/" }, { label: "Hostel Facilities", href: "/" }, { label: "Sports & Recreation", href: "/" }, { 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 (
); }