From 7deec1da69957c0e333643561b4b4af5d5bb746c Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Mon, 8 Jun 2026 16:12:06 +0000 Subject: [PATCH] Bob AI: Match KPI card style to other cards --- src/pages/HomePage/sections/Hero.tsx | 4 +- src/pages/HomePage/sections/Metrics.tsx | 102 +++++++++++++++++------- 2 files changed, 76 insertions(+), 30 deletions(-) diff --git a/src/pages/HomePage/sections/Hero.tsx b/src/pages/HomePage/sections/Hero.tsx index c400608..2f21e4b 100644 --- a/src/pages/HomePage/sections/Hero.tsx +++ b/src/pages/HomePage/sections/Hero.tsx @@ -66,11 +66,11 @@ const HeroInline = () => { -
+

500+

Active Members

-
+

98%

Success Rate

diff --git a/src/pages/HomePage/sections/Metrics.tsx b/src/pages/HomePage/sections/Metrics.tsx index 9ebcdf1..3c8340a 100644 --- a/src/pages/HomePage/sections/Metrics.tsx +++ b/src/pages/HomePage/sections/Metrics.tsx @@ -1,34 +1,80 @@ -// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this -// file as the canonical source for the "metrics" section. +/* eslint-disable */ +// @ts-nocheck — generated by catalog-eject; runtime-correct but TS strict-mode false-positives on inlined catalog body +import Button from "@/components/ui/Button"; +import TextAnimation from "@/components/ui/TextAnimation"; +import GridOrCarousel from "@/components/ui/GridOrCarousel"; +import ScrollReveal from "@/components/ui/ScrollReveal"; -import React from 'react'; -import MetricsSimpleCards from '@/components/sections/metrics/MetricsSimpleCards'; -import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary"; +const metrics = [ + { + value: "10+", + description: "Years of experience helping clients achieve peak fitness." + }, + { + value: "500+", + description: "Satisfied members who have transformed their lives." + }, + { + value: "95%", + description: "Client retention rate, reflecting our commitment to your success." + } +]; -export default function MetricsSection(): React.JSX.Element { - return ( -
- - ( +
+
+
+
+

{"Our Impact"}

+
+ + - + + + + {(undefined || undefined) && ( +
+ {undefined &&
+ )}
+ + + + {metrics.map((metric) => ( +
+ {metric.value} +

{metric.description}

+
+ ))} +
+
+
+
+); + +export default function MetricsSection() { + return ( +
+ +
); } -- 2.49.1