Add src/app/faculty/page.tsx
This commit is contained in:
38
src/app/faculty/page.tsx
Normal file
38
src/app/faculty/page.tsx
Normal 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>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user