Files
7c3f3ebc-ad30-4196-bf58-a8b…/src/pages/HomePage/sections/Metrics.tsx
2026-06-14 10:03:31 +00:00

47 lines
1.3 KiB
TypeScript

// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this
// file as the canonical source for the "metrics" section.
import React from 'react';
import MetricsFeatureCards from '@/components/sections/metrics/MetricsFeatureCards';
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
export default function MetricsSection(): React.JSX.Element {
return (
<div id="metrics" data-section="metrics">
<SectionErrorBoundary name="metrics">
<MetricsFeatureCards
tag="Statistics"
title="Proven Excellence"
description="Our numbers speak for themselves."
metrics={[
{
value: "100K+",
title: "Orders Shipped",
features: [
"Fast shipping",
"Safe delivery",
],
},
{
value: "99.9%",
title: "Satisfaction Rate",
features: [
"Happy users",
"Verified quality",
],
},
{
value: "50+",
title: "Global Markets",
features: [
"Available everywhere",
"Localized support",
],
},
]}
/>
</SectionErrorBoundary>
</div>
);
}