From bc7d053060d74a027ee3b9e2a1e84e1e49cdfa15 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 8 May 2026 14:18:21 +0000 Subject: [PATCH] Switch to version 2: modified src/app/about/page.tsx --- src/app/about/page.tsx | 94 ++++++++++++++++++++++++++++++++++++------ 1 file changed, 81 insertions(+), 13 deletions(-) diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index 91f042b..3bd05f7 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -26,12 +26,24 @@ export default function LandingPage() { @@ -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() { ); -} \ No newline at end of file +}