Switch to version 1: remove src/pages/HomePage/sections/Metrics.tsx

This commit is contained in:
2026-06-20 19:49:45 +00:00
parent 1d7e55d36f
commit 9550f8b7b2

View File

@@ -1,46 +0,0 @@
// 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="Our Impact"
title="Excellence in Numbers"
description="Our commitment to quality translates into tangible excellence, appreciated by our growing community."
metrics={[
{
value: "10k+",
title: "Satisfied Connoisseurs",
features: [
"Curated experience",
"Consistent delivery",
],
},
{
value: "50+",
title: "Artisan Partnerships",
features: [
"Community support",
"Sustainable trade",
],
},
{
value: "100%",
title: "Authentic Ingredients",
features: [
"No additives",
"Natural quality",
],
},
]}
/>
</SectionErrorBoundary>
</div>
);
}