diff --git a/src/app/programs/page.tsx b/src/app/programs/page.tsx new file mode 100644 index 0000000..4f107cb --- /dev/null +++ b/src/app/programs/page.tsx @@ -0,0 +1,168 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline"; +import FeatureCardEight from "@/components/sections/feature/FeatureCardEight"; +import MetricCardOne from "@/components/sections/metrics/MetricCardOne"; +import FaqSplitMedia from "@/components/sections/faq/FaqSplitMedia"; +import FooterLogoReveal from "@/components/sections/footer/FooterLogoReveal"; +import Link from "next/link"; +import { Award, TrendingUp, Users, Sparkles, HelpCircle } from "lucide-react"; + +export default function ProgramsPage() { + const navItems = [ + { name: "Home", id: "/" }, + { name: "About", id: "about" }, + { name: "Programs", id: "programs" }, + { name: "Admissions", id: "admissions" }, + ]; + + return ( + + + +
+ +
+ +
+ +
+ +
+ +
+ + +
+ ); +} \ No newline at end of file