35 lines
1.1 KiB
TypeScript
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>
|
|
);
|
|
}
|