+
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 (
-
-
- (
+
+
+
+
+
+
-
+
+
+
+ {(undefined || undefined) && (
+
+ {undefined && }
+ {undefined && }
+
+ )}
+
+
+
+ {metrics.map((metric) => (
+
+
{metric.value}
+
{metric.description}
+
+ ))}
+
+
+
+
+);
+
+export default function MetricsSection() {
+ return (
+
+
+
);
}