Files
f5dad343-ab3d-4675-b595-a42…/src/pages/HomePage/sections/Metrics.tsx
2026-06-22 11:44:41 +00:00

35 lines
1.1 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 MetricsSimpleCards from '@/components/sections/metrics/MetricsSimpleCards';
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
export default function MetricsSection(): React.JSX.Element {
return (
<div id="metrics" data-section="metrics">
<SectionErrorBoundary name="metrics">
<MetricsSimpleCards
tag="Quality Assured"
title="The Decant Difference"
description="Why fragrance lovers trust us with their collection building."
metrics={[
{
value: "100%",
description: "Authentic Fragrances",
},
{
value: "24h",
description: "Swift Processing",
},
{
value: "5ml+",
description: "Flexible Sizes",
},
]}
/>
</SectionErrorBoundary>
</div>
);
}