Update src/app/about/page.tsx

This commit is contained in:
2026-05-08 14:17:40 +00:00
parent 4e86fc88c4
commit f5f61b8486

View File

@@ -26,24 +26,12 @@ 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="Wisdom Science & Maths"
brandName="Academy Excellence"
/>
</div>
@@ -52,21 +40,9 @@ 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"
/>
@@ -78,29 +54,7 @@ export default function LandingPage() {
textboxLayout="default"
gridVariant="three-columns-all-equal-width"
useInvertedBackground={false}
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",
},
]}
members={[]}
title="Our Expert Teachers"
description="Learn from the best educators in the field."
/>
@@ -109,35 +63,13 @@ 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",
},
{
label: "Schedule",
href: "#",
},
],
},
{ items: [{ label: "About", href: "/about" }, { label: "Courses", href: "/courses" }] },
{ items: [{ label: "Contact Us", href: "/contact" }] }
]}
logoText="Wisdom Science & Maths"
logoText="Academy Excellence"
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}
}