Switch to version 2: modified src/app/about/page.tsx

This commit is contained in:
2026-05-08 14:18:21 +00:00
parent 614a95fde9
commit bc7d053060

View File

@@ -26,12 +26,24 @@ export default function LandingPage() {
<div id="nav" data-section="nav">
<NavbarStyleFullscreen
navItems={[
{ name: "Home", id: "/" },
{ name: "About", id: "/about" },
{ name: "Courses", id: "/courses" },
{ name: "Contact", id: "/contact" },
{
name: "Home",
id: "/",
},
{
name: "About",
id: "/about",
},
{
name: "Courses",
id: "/courses",
},
{
name: "Contact",
id: "/contact",
},
]}
brandName="Academy Excellence"
brandName="Wisdom Science & Maths"
/>
</div>
@@ -40,9 +52,21 @@ export default function LandingPage() {
useInvertedBackground={true}
title="About Our Academy"
metrics={[
{ icon: GraduationCap, label: "Years Experience", value: "10+" },
{ icon: Users, label: "Active Students", value: "200+" },
{ icon: BookOpen, label: "Subjects", value: "8" },
{
icon: GraduationCap,
label: "Years Experience",
value: "10+",
},
{
icon: Users,
label: "Active Students",
value: "200+",
},
{
icon: BookOpen,
label: "Subjects",
value: "8",
},
]}
metricsAnimation="slide-up"
/>
@@ -54,7 +78,29 @@ export default function LandingPage() {
textboxLayout="default"
gridVariant="three-columns-all-equal-width"
useInvertedBackground={false}
members={[]}
members={[
{
id: "t1",
name: "Dr. Silva",
role: "Senior Science Lead",
description: "Experienced Science tutor.",
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-woman-making-hand-gestures_23-2148938303.jpg",
},
{
id: "t2",
name: "Ms. Perera",
role: "Math Head",
description: "Expert Mathematics teacher.",
imageSrc: "http://img.b2bpic.net/free-photo/young-beautiful-cheerful-african-woman-student-smiling-laughing-sitting-cafe-books-magazines-lying-table-learning-education_176420-12412.jpg",
},
{
id: "t3",
name: "Mr. Fernando",
role: "Physics Lead",
description: "O/L revision specialist.",
imageSrc: "http://img.b2bpic.net/free-photo/front-view-doctor-wearing-lab-coat_23-2149551157.jpg",
},
]}
title="Our Expert Teachers"
description="Learn from the best educators in the field."
/>
@@ -63,13 +109,35 @@ export default function LandingPage() {
<div id="footer" data-section="footer">
<FooterLogoEmphasis
columns={[
{ items: [{ label: "About", href: "/about" }, { label: "Courses", href: "/courses" }] },
{ items: [{ label: "Contact Us", href: "/contact" }] }
{
items: [
{
label: "About",
href: "/about",
},
{
label: "Courses",
href: "/courses",
},
],
},
{
items: [
{
label: "Contact Us",
href: "/contact",
},
{
label: "Schedule",
href: "#",
},
],
},
]}
logoText="Academy Excellence"
logoText="Wisdom Science & Maths"
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}
}