From 56987c61f349c1e16aa84ed2fb4304bb566e9fb0 Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Thu, 18 Jun 2026 16:52:45 +0000 Subject: [PATCH] Bob AI: Updated metrics data and layout to horizontal cards --- src/pages/HomePage/sections/Metrics.tsx | 123 +++++++++++++++++------- 1 file changed, 89 insertions(+), 34 deletions(-) diff --git a/src/pages/HomePage/sections/Metrics.tsx b/src/pages/HomePage/sections/Metrics.tsx index e860a7b..e277041 100644 --- a/src/pages/HomePage/sections/Metrics.tsx +++ b/src/pages/HomePage/sections/Metrics.tsx @@ -1,40 +1,95 @@ -// 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 { cls } from "@/lib/utils"; +import Button from "@/components/ui/Button"; +import TextAnimation from "@/components/ui/TextAnimation"; +import ImageOrVideo from "@/components/ui/ImageOrVideo"; +import ScrollReveal from "@/components/ui/ScrollReveal"; -import React from 'react'; -import MetricsMediaCards from '@/components/sections/metrics/MetricsMediaCards'; -import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary"; +const metrics = [ + { + value: "20+", + title: "Projects Completed", + description: "Diverse design initiatives across Central Asia.", + }, + { + value: "10+", + title: "Global Partners", + description: "Trusted brands within our portfolio.", + }, + { + value: "4+", + title: "Years of Excellence", + description: "Leading the regional creative sector.", + } +]; -export default function MetricsSection(): React.JSX.Element { - return ( -
- - ( +
+
+
+
+

{"Impact"}

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

{metric.description}

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