From e32ab8a0fba6813bc554fa25c6a8e672f96292df Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 2 Apr 2026 12:02:38 +0000 Subject: [PATCH 1/5] Update src/app/about/page.tsx --- src/app/about/page.tsx | 95 +++++++++--------------------------------- 1 file changed, 19 insertions(+), 76 deletions(-) diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index d339910..9464b56 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -7,37 +7,29 @@ import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/Nav import TeamCardTwo from '@/components/sections/team/TeamCardTwo'; import TextSplitAbout from '@/components/sections/about/TextSplitAbout'; -export default function LandingPage() { +export default function AboutPage() { return ( @@ -62,20 +53,8 @@ export default function LandingPage() { title="Our Team" description="Meet the minds behind Trackly." members={[ - { - id: "tm1", - name: "Alex Smith", - role: "CEO", - description: "Tech visionary.", - imageSrc: "http://img.b2bpic.net/free-photo/closeup-happy-business-man-standing-outside_1262-3488.jpg?_wi=2", - }, - { - id: "tm2", - name: "Jordan Lee", - role: "Lead Engineer", - description: "Hardware expert.", - imageSrc: "http://img.b2bpic.net/free-photo/serious-athlete-with-earphones-leaning-bridge_1262-5513.jpg?_wi=3", - }, + { id: "tm1", name: "Alex Smith", role: "CEO", description: "Tech visionary.", imageSrc: "http://img.b2bpic.net/free-photo/closeup-happy-business-man-standing-outside_1262-3488.jpg" }, + { id: "tm2", name: "Jordan Lee", role: "Lead Engineer", description: "Hardware expert.", imageSrc: "http://img.b2bpic.net/free-photo/serious-athlete-with-earphones-leaning-bridge_1262-5513.jpg" } ]} /> @@ -83,45 +62,9 @@ export default function LandingPage() {