From 21ef96493a0d4f7a3a4c3f62efcd98d981323f54 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 7 Jun 2026 19:37:06 +0000 Subject: [PATCH] Switch to version 3: modified src/pages/HomePage/sections/Metrics.tsx --- src/pages/HomePage/sections/Metrics.tsx | 88 ++++++++++++++++--------- 1 file changed, 56 insertions(+), 32 deletions(-) diff --git a/src/pages/HomePage/sections/Metrics.tsx b/src/pages/HomePage/sections/Metrics.tsx index e2911a9..8ce97d7 100644 --- a/src/pages/HomePage/sections/Metrics.tsx +++ b/src/pages/HomePage/sections/Metrics.tsx @@ -1,38 +1,62 @@ -// 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 { Pizza, Star, Award } 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