Add src/app/faculty/page.tsx

This commit is contained in:
2026-03-11 15:44:05 +00:00
parent 0df9a7c9ea
commit 0a6a8b7aaa

156
src/app/faculty/page.tsx Normal file
View File

@@ -0,0 +1,156 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
import HeroLogo from '@/components/sections/hero/HeroLogo';
import TeamCardTen from '@/components/sections/team/TeamCardTen';
import ContactCenter from '@/components/sections/contact/ContactCenter';
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
export default function FacultyPage() {
return (
<ThemeProvider
defaultButtonVariant="hover-magnetic"
defaultTextAnimation="entrance-slide"
borderRadius="pill"
contentWidth="medium"
sizing="largeSmall"
background="aurora"
cardStyle="gradient-mesh"
primaryButtonStyle="flat"
secondaryButtonStyle="layered"
headingFontWeight="normal"
>
<div id="nav" data-section="nav">
<NavbarStyleApple
brandName="Academy"
navItems={[
{ name: "About", id: "/" },
{ name: "Programs", id: "/" },
{ name: "Team", id: "/" },
{ name: "Testimonials", id: "/" },
{ name: "Contact", id: "/" },
{ name: "Faculty", id: "/faculty" }
]}
/>
</div>
<div id="hero" data-section="hero">
<HeroLogo
logoText="Our Faculty & Staff"
description="Meet the dedicated educators and professionals who shape the Academy experience. Our team brings expertise, passion, and a commitment to student success."
buttons={[
{ text: "Contact Us", href: "#contact" },
{ text: "Learn More", href: "/" }
]}
imageSrc="http://img.b2bpic.net/free-photo/teacher-holding-english-class_23-2149402693.jpg"
imageAlt="Faculty members in classroom"
showDimOverlay={false}
buttonAnimation="slide-up"
/>
</div>
<div id="faculty-team" data-section="faculty-team">
<TeamCardTen
title="Leadership Team"
tag="Administration"
tagAnimation="slide-up"
membersAnimation="slide-up"
memberVariant="card"
useInvertedBackground={true}
members={[
{
id: "1", name: "Dr. Patricia Johnson", imageSrc: "http://img.b2bpic.net/free-photo/happy-smiling-young-man-blue-shirt-blackboard_176420-2943.jpg", imageAlt: "Dr. Patricia Johnson, School Principal"
},
{
id: "2", name: "Mr. David Chen", imageSrc: "http://img.b2bpic.net/free-photo/senior-male-professor-with-arms-crossed-standing-against-chalkboard_23-2148200953.jpg", imageAlt: "Mr. David Chen, Head of Academics"
},
{
id: "3", name: "Ms. Emily Rodriguez", imageSrc: "http://img.b2bpic.net/free-photo/closeup-senior-lecturer-with-arms-crossed_1262-1753.jpg", imageAlt: "Ms. Emily Rodriguez, Student Services Director"
},
{
id: "4", name: "Dr. Michael Foster", imageSrc: "http://img.b2bpic.net/free-photo/happy-smiling-young-man-blue-shirt-blackboard_176420-2943.jpg", imageAlt: "Dr. Michael Foster, Head of STEM Programs"
}
]}
/>
</div>
<div id="teaching-staff" data-section="teaching-staff">
<TeamCardTen
title="Teaching Faculty"
tag="Educators"
tagAnimation="slide-up"
membersAnimation="slide-up"
memberVariant="card"
useInvertedBackground={false}
members={[
{
id: "1", name: "Dr. Sarah Mitchell", imageSrc: "http://img.b2bpic.net/free-photo/senior-male-professor-with-arms-crossed-standing-against-chalkboard_23-2148200953.jpg", imageAlt: "Dr. Sarah Mitchell, Science Department"
},
{
id: "2", name: "Mr. James Anderson", imageSrc: "http://img.b2bpic.net/free-photo/closeup-senior-lecturer-with-arms-crossed_1262-1753.jpg", imageAlt: "Mr. James Anderson, Humanities Department"
},
{
id: "3", name: "Ms. Rachel Thompson", imageSrc: "http://img.b2bpic.net/free-photo/happy-smiling-young-man-blue-shirt-blackboard_176420-2943.jpg", imageAlt: "Ms. Rachel Thompson, Mathematics Department"
},
{
id: "4", name: "Dr. Robert Garcia", imageSrc: "http://img.b2bpic.net/free-photo/senior-male-professor-with-arms-crossed-standing-against-chalkboard_23-2148200953.jpg", imageAlt: "Dr. Robert Garcia, Arts Department"
},
{
id: "5", name: "Ms. Lisa Chen", imageSrc: "http://img.b2bpic.net/free-photo/closeup-senior-lecturer-with-arms-crossed_1262-1753.jpg", imageAlt: "Ms. Lisa Chen, Languages Department"
},
{
id: "6", name: "Mr. Kevin Walsh", imageSrc: "http://img.b2bpic.net/free-photo/happy-smiling-young-man-blue-shirt-blackboard_176420-2943.jpg", imageAlt: "Mr. Kevin Walsh, Physical Education"
}
]}
/>
</div>
<div id="contact" data-section="contact">
<ContactCenter
tag="Connect With Us"
title="Have Questions About Our Faculty?"
description="Want to learn more about our teaching methods, faculty qualifications, or educational philosophy? Reach out to our admissions team today."
background={{ variant: "rotated-rays-animated-grid" }}
useInvertedBackground={false}
inputPlaceholder="Enter your email address"
buttonText="Get in Touch"
termsText="We'll respond to your inquiry within 24 hours during business days."
/>
</div>
<div id="footer" data-section="footer">
<FooterBaseReveal
columns={[
{
title: "Navigation", items: [
{ label: "Home", href: "/" },
{ label: "Programs", href: "/" },
{ label: "Our Team", href: "/" },
{ label: "Faculty", href: "/faculty" },
{ label: "Contact", href: "/" }
]
},
{
title: "Resources", items: [
{ label: "Student Portal", href: "#" },
{ label: "Parent Resources", href: "#" },
{ label: "Academics", href: "/" },
{ label: "Calendar", href: "#" }
]
},
{
title: "Connect", items: [
{ label: "Email Us", href: "#" },
{ label: "Visit Campus", href: "/" },
{ label: "Social Media", href: "https://twitter.com" },
{ label: "Careers", href: "#" }
]
}
]}
copyrightText="© 2025 Academy. All rights reserved."
/>
</div>
</ThemeProvider>
);
}