From 79ad6559754c0a572596130177f3678f24b4f4af Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Wed, 1 Jul 2026 02:34:51 +0000 Subject: [PATCH] Bob AI: Added static Trust Metrics section with premium cards --- src/pages/HomePage.tsx | 4 +- src/pages/HomePage/sections/TrustMetrics.tsx | 50 ++++++++++++++++++++ 2 files changed, 53 insertions(+), 1 deletion(-) create mode 100644 src/pages/HomePage/sections/TrustMetrics.tsx diff --git a/src/pages/HomePage.tsx b/src/pages/HomePage.tsx index 9cec0d3..a9356d7 100644 --- a/src/pages/HomePage.tsx +++ b/src/pages/HomePage.tsx @@ -14,12 +14,14 @@ import CommitmentsSection from './HomePage/sections/Commitments'; import TestimonialsSection from './HomePage/sections/Testimonials'; import ContactSection from './HomePage/sections/Contact'; -export default function HomePage(): React.JSX.Element { + +import TrustMetricsSection from './HomePage/sections/TrustMetrics';export default function HomePage(): React.JSX.Element { return ( <> + diff --git a/src/pages/HomePage/sections/TrustMetrics.tsx b/src/pages/HomePage/sections/TrustMetrics.tsx new file mode 100644 index 0000000..7ab5e18 --- /dev/null +++ b/src/pages/HomePage/sections/TrustMetrics.tsx @@ -0,0 +1,50 @@ +import { Calendar, Building2, Users, Clock } from "lucide-react"; +import ScrollReveal from "@/components/ui/ScrollReveal"; +import TextAnimation from "@/components/ui/TextAnimation"; +import Card from "@/components/ui/Card"; + +export default function TrustMetricsSection() { + return ( +
+
+
+
+ + +
+ + +
+ {[ + { icon: Calendar, value: "15+", label: "Years Experience" }, + { icon: Building2, value: "100+", label: "Business Clients" }, + { icon: Users, value: "1000+", label: "Employees Managed" }, + { icon: Clock, value: "24/7", label: "Client Support" } + ].map((metric, index) => ( + +
+ +
+

{metric.value}

+

{metric.label}

+
+ ))} +
+
+
+
+
+ ); +} \ No newline at end of file -- 2.49.1