diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index e8be2f1..aeee35b 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -7,7 +7,7 @@ import InlineImageSplitTextAbout from '@/components/sections/about/InlineImageSp import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; import TeamCardFive from '@/components/sections/team/TeamCardFive'; -export default function LandingPage() { +export default function AboutPage() { return ( @@ -54,15 +40,8 @@ export default function LandingPage() { @@ -75,36 +54,11 @@ export default function LandingPage() { title="Our Expert Team" description="Meet the professionals behind your home's transformation." team={[ - { - id: "t1", - name: "John Doe", - role: "Lead Architect", - imageSrc: "http://img.b2bpic.net/free-photo/portrait-smiling-young-architect-man-showing-thumb-up-gesture-looking-camera_23-2148203957.jpg", - }, - { - id: "t2", - name: "Jane Smith", - role: "Interior Designer", - imageSrc: "http://img.b2bpic.net/free-photo/smiling-businesswoman-city-with-blurred-background_1139-257.jpg", - }, - { - id: "t3", - name: "Robert K.", - role: "Logistics Manager", - imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-portrait-construction-engineer-talking-phone_23-2148233685.jpg", - }, - { - id: "t4", - name: "Alice W.", - role: "Sales Specialist", - imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-confident-asian-businesswoman-cross-arms-chest-looking-confident-standing-near_1258-198997.jpg?_wi=1", - }, - { - id: "t5", - name: "Mark O.", - role: "Installation Expert", - imageSrc: "http://img.b2bpic.net/free-photo/happy-builder-hardhat_1398-1730.jpg", - }, + { id: "t1", name: "John Doe", role: "Lead Architect", imageSrc: "http://img.b2bpic.net/free-photo/portrait-smiling-young-architect-man-showing-thumb-up-gesture-looking-camera_23-2148203957.jpg" }, + { id: "t2", name: "Jane Smith", role: "Interior Designer", imageSrc: "http://img.b2bpic.net/free-photo/smiling-businesswoman-city-with-blurred-background_1139-257.jpg" }, + { id: "t3", name: "Robert K.", role: "Logistics Manager", imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-portrait-construction-engineer-talking-phone_23-2148233685.jpg" }, + { id: "t4", name: "Alice W.", role: "Sales Specialist", imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-confident-asian-businesswoman-cross-arms-chest-looking-confident-standing-near_1258-198997.jpg" }, + { id: "t5", name: "Mark O.", role: "Installation Expert", imageSrc: "http://img.b2bpic.net/free-photo/happy-builder-hardhat_1398-1730.jpg" }, ]} /> @@ -112,32 +66,8 @@ export default function LandingPage() {