From fb585b5d8119b1bfb1203440be707bdc20740fc3 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 7 Jun 2026 19:02:08 +0000 Subject: [PATCH] Switch to version 2: added src/pages/HomePage/sections/Metrics.tsx --- src/pages/HomePage/sections/Metrics.tsx | 38 +++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 src/pages/HomePage/sections/Metrics.tsx diff --git a/src/pages/HomePage/sections/Metrics.tsx b/src/pages/HomePage/sections/Metrics.tsx new file mode 100644 index 0000000..e2911a9 --- /dev/null +++ b/src/pages/HomePage/sections/Metrics.tsx @@ -0,0 +1,38 @@ +// 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, Clock, DollarSign, Droplet, Flame, Pizza, Star, Wheat } from "lucide-react"; +import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary"; + +export default function MetricsSection(): React.JSX.Element { + return ( +
+ + + +
+ ); +}