Add src/app/faculty/page.tsx

This commit is contained in:
2026-03-31 12:28:19 +00:00
parent bbdf9672bf
commit ebecce80ad

38
src/app/faculty/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 FacultyPage() {
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 Distinguished Faculty"
description="Learn from experts who are shaping the future through advanced research and industrial application."
textboxLayout="default"
center={true}
/>
</div>
<FooterBaseCard
logoText="CHINHOYI UNIVERSITY OF TECHNOLOGY"
columns={[]}
/>
</ReactLenis>
</ThemeProvider>
);
}