From 327d7eeeda4ccba1b594605cf6b26ad351b3a6ed Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Sun, 7 Jun 2026 19:47:48 +0000 Subject: [PATCH 1/2] Bob AI: Added glassmorphic Active Now tags to team images --- src/pages/HomePage/sections/Team.tsx | 91 ++++++++++++++++++++-------- 1 file changed, 65 insertions(+), 26 deletions(-) diff --git a/src/pages/HomePage/sections/Team.tsx b/src/pages/HomePage/sections/Team.tsx index ffcf133..b22ec1b 100644 --- a/src/pages/HomePage/sections/Team.tsx +++ b/src/pages/HomePage/sections/Team.tsx @@ -1,37 +1,76 @@ -// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this -// file as the canonical source for the "team" section. - import React from 'react'; import TeamStackedCards from '@/components/sections/team/TeamStackedCards'; -import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary"; +import Tag from '@/components/ui/Tag'; +import ImageOrVideo from '@/components/ui/ImageOrVideo'; +import ScrollReveal from '@/components/ui/ScrollReveal'; + +export default function TeamSection() { + const members = [ + { + name: "Chef Marco", + role: "Head Pizzaiolo", + imageSrc: "http://img.b2bpic.net/free-photo/italian-chef-is-putting-gourmet-freshly-made-pizza-stone-oven_613910-14121.jpg", + }, + { + name: "Sophia Rodriguez", + role: "Assistant Chef", + imageSrc: "http://img.b2bpic.net/free-photo/smiling-young-pretty-delivery-girl-red-uniform-cap-holding-pizza-packages_141793-31534.jpg", + }, + { + name: "David Kim", + role: "Operations Manager", + imageSrc: "http://img.b2bpic.net/free-photo/woman-looking-goodies-local-producer_23-2149110825.jpg", + }, + ]; -export default function TeamSection(): React.JSX.Element { return ( -
- - +
+ -
+
+
+ +
+ +

Our Passionate Pizza Crew

+

+ Behind every delicious pizza is a dedicated team committed to quality and a warm dining experience. +

+
+
+ +
+ {members.map((member, index) => ( + +
+
+ +
+
+ + Active now +
+
+
+
+

{member.name}

+

{member.role}

+
+
+
+ ))} +
+
+
+
); } From 52835c41e37b972e90f41d9d112021d4f1cb3be1 Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Sun, 7 Jun 2026 19:48:30 +0000 Subject: [PATCH 2/2] Bob AI: fix build errors (attempt 1) --- src/pages/HomePage/sections/Team.tsx | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/pages/HomePage/sections/Team.tsx b/src/pages/HomePage/sections/Team.tsx index b22ec1b..9f109f4 100644 --- a/src/pages/HomePage/sections/Team.tsx +++ b/src/pages/HomePage/sections/Team.tsx @@ -33,13 +33,13 @@ export default function TeamSection() { members={members} /> -
-
- -
+
+
+ +

Our Passionate Pizza Crew

-

+

Behind every delicious pizza is a dedicated team committed to quality and a warm dining experience.

@@ -47,8 +47,8 @@ export default function TeamSection() {
{members.map((member, index) => ( - -
+ +
); -} +} \ No newline at end of file