Add src/app/programs/page.tsx

This commit is contained in:
2026-03-31 12:28:20 +00:00
parent 8d3edfc7b8
commit 9366223071

38
src/app/programs/page.tsx Normal file
View File

@@ -0,0 +1,38 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
import TextBox from '@/components/Textbox';
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
export default function ProgramsPage() {
return (
<ThemeProvider>
<ReactLenis root>
<NavbarStyleApple
navItems={[
{ name: "Home", id: "/" },
{ name: "Programs", id: "/programs" },
{ name: "Admissions", id: "/admissions" },
{ name: "Faculty", id: "/faculty" },
{ name: "Contact", id: "/contact" },
]}
brandName="CUT"
/>
<div className="pt-32 pb-20">
<TextBox
title="Our Academic Programs"
description="Explore our diverse range of undergraduate and postgraduate courses designed to prepare you for the future of industry and technology."
textboxLayout="default"
center={true}
/>
</div>
<FooterBaseCard
logoText="CHINHOYI UNIVERSITY OF TECHNOLOGY"
columns={[]}
/>
</ReactLenis>
</ThemeProvider>
);
}