From 3bc849fbf9e487ac1c76222d863b4263456ac8fd Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 2 Apr 2026 22:29:59 +0000 Subject: [PATCH] Update src/app/search/page.tsx --- src/app/search/page.tsx | 102 ++++------------------------------------ 1 file changed, 9 insertions(+), 93 deletions(-) diff --git a/src/app/search/page.tsx b/src/app/search/page.tsx index 692dc18..78cafe4 100644 --- a/src/app/search/page.tsx +++ b/src/app/search/page.tsx @@ -3,9 +3,9 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import ReactLenis from "lenis/react"; import FeatureCardTwentySix from '@/components/sections/feature/FeatureCardTwentySix'; -import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal'; import MetricCardTen from '@/components/sections/metrics/MetricCardTen'; import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; +import { ArrowRight } from 'lucide-react'; export default function LandingPage() { return ( @@ -26,17 +26,11 @@ export default function LandingPage() { @@ -48,22 +42,13 @@ export default function LandingPage() { useInvertedBackground={false} features={[ { - title: "Verified Professionals", - description: "Every trainer on FITPRO is vetted for certifications and experience.", - imageSrc: "http://img.b2bpic.net/free-photo/smiling-afro-american-sports-man-with-arms-folded-looking-camera_171337-8257.jpg?_wi=2", - buttonIcon: "ArrowRight", + title: "Verified Professionals", description: "Every trainer on FITPRO is vetted for certifications and experience.", imageSrc: "http://img.b2bpic.net/free-photo/smiling-afro-american-sports-man-with-arms-folded-looking-camera_171337-8257.jpg", buttonIcon: ArrowRight, }, { - title: "Personalized Matches", - description: "Define your specific needs and let our system find your perfect coach.", - imageSrc: "http://img.b2bpic.net/free-photo/young-blonde-fit-sporty-girl-woman-black-sportswear-demostrate-her-strong-muscular-body-stretching_231208-4084.jpg?_wi=2", - buttonIcon: "ArrowRight", + title: "Personalized Matches", description: "Define your specific needs and let our system find your perfect coach.", imageSrc: "http://img.b2bpic.net/free-photo/young-blonde-fit-sporty-girl-woman-black-sportswear-demostrate-her-strong-muscular-body-stretching_231208-4084.jpg", buttonIcon: ArrowRight, }, { - title: "Seamless Booking", - description: "Direct access to real-time calendars and secure payment flows.", - imageSrc: "http://img.b2bpic.net/free-photo/front-view-fit-man-gym_23-2149517268.jpg?_wi=2", - buttonIcon: "ArrowRight", + title: "Seamless Booking", description: "Direct access to real-time calendars and secure payment flows.", imageSrc: "http://img.b2bpic.net/free-photo/front-view-fit-man-gym_23-2149517268.jpg", buttonIcon: ArrowRight, }, ]} title="Elite Trainers Nationwide" @@ -80,81 +65,12 @@ export default function LandingPage() { description="View global performance metrics of our trainer community." metrics={[ { - id: "m1", - title: "Success Rate", - subtitle: "Monthly", - category: "General", - value: "98%", - }, + id: "m1", title: "Success Rate", subtitle: "Monthly", category: "General", value: "98%"}, { - id: "m2", - title: "Active Trainers", - subtitle: "Weekly", - category: "Growth", - value: "500+", - }, + id: "m2", title: "Active Trainers", subtitle: "Weekly", category: "Growth", value: "500+"}, ]} /> - - ); -- 2.49.1