diff --git a/src/pages/HomePage/sections/Metrics.tsx b/src/pages/HomePage/sections/Metrics.tsx index 8ce97d7..e2911a9 100644 --- a/src/pages/HomePage/sections/Metrics.tsx +++ b/src/pages/HomePage/sections/Metrics.tsx @@ -1,62 +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 { Pizza, Star, Award } from "lucide-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"; -import Button from "@/components/ui/Button"; -import Tag from "@/components/ui/Tag"; -import Card from "@/components/ui/Card"; -import ScrollReveal from "@/components/ui/ScrollReveal"; export default function MetricsSection(): React.JSX.Element { - const metrics = [ - { - icon: Pizza, - title: "Pizzas Baked", - value: "50,000+", - }, - { - icon: Star, - title: "Happy Customers", - value: "10,000+", - }, - { - icon: Award, - title: "Years Serving SF", - value: "15+", - }, - ]; - return ( -
- -
-
-
- - -

A Taste of Our Success

-

- More than just pizza, it's a legacy of flavor and satisfied customers. -

-
-
- -
- {metrics.map((metric, index) => ( - - -
- -
-

{metric.value}

-

{metric.title}

-
-
-
-
-
+
+ + + +
); -} \ No newline at end of file +}