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

This commit is contained in:
2026-06-07 20:59:00 +00:00
parent e7acd3741f
commit 8ff368d3d3

View File

@@ -1,38 +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 MetricsIconCards from '@/components/sections/metrics/MetricsIconCards';
import { Award, Star } from "lucide-react";
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
export default function MetricsSection(): React.JSX.Element {
return (
<div id="metrics" data-section="metrics">
<SectionErrorBoundary name="metrics">
<MetricsIconCards
tag="Our Impact"
title="A Legacy of Sweetness"
description="Serving our community with passion and delicious creations, one baked good at a time."
metrics={[
{
icon: Star,
title: "Years Baking",
value: "15+",
},
{
icon: Award,
title: "Original Recipes",
value: "100+",
},
{
icon: Award,
title: "Happy Customers",
value: "10,000+",
},
]}
/>
</SectionErrorBoundary>
</div>
);
}