47 lines
1.3 KiB
TypeScript
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>
|
|
);
|
|
}
|