From a82477d46780b82b9e251994ec76a9bce6a7bd50 Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Sun, 7 Jun 2026 19:05:50 +0000 Subject: [PATCH 1/2] Bob AI: add a button inside of each one of the our impact cards with --- src/pages/HomePage/sections/Metrics.tsx | 86 ++++++++++++++++--------- 1 file changed, 55 insertions(+), 31 deletions(-) diff --git a/src/pages/HomePage/sections/Metrics.tsx b/src/pages/HomePage/sections/Metrics.tsx index e2911a9..0711c20 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}

+
+
+
+
+
); } From 2fea80ea29beeeb2c387b4c7f97b6f135ccb8aea Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Sun, 7 Jun 2026 19:06:23 +0000 Subject: [PATCH 2/2] Bob AI: fix build errors (attempt 1) --- src/pages/HomePage/sections/Metrics.tsx | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/pages/HomePage/sections/Metrics.tsx b/src/pages/HomePage/sections/Metrics.tsx index 0711c20..8ce97d7 100644 --- a/src/pages/HomePage/sections/Metrics.tsx +++ b/src/pages/HomePage/sections/Metrics.tsx @@ -28,13 +28,13 @@ export default function MetricsSection(): React.JSX.Element { return (
-
-
-
- +
+
+
+

A Taste of Our Success

-

+

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

@@ -42,7 +42,7 @@ export default function MetricsSection(): React.JSX.Element {
{metrics.map((metric, index) => ( - +
@@ -59,4 +59,4 @@ export default function MetricsSection(): React.JSX.Element {
); -} +} \ No newline at end of file