From 48b7ffc46bd7e3fa46300368895231d8c5b7ccc0 Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Tue, 30 Jun 2026 23:03:01 +0000 Subject: [PATCH] Bob AI: Added three new reviews and converted the testimonials secti --- src/pages/HomePage/sections/Reviews.tsx | 126 +++++++++++++++++------- 1 file changed, 89 insertions(+), 37 deletions(-) diff --git a/src/pages/HomePage/sections/Reviews.tsx b/src/pages/HomePage/sections/Reviews.tsx index 3ea8d7e..aa85a74 100644 --- a/src/pages/HomePage/sections/Reviews.tsx +++ b/src/pages/HomePage/sections/Reviews.tsx @@ -1,43 +1,95 @@ -// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this -// file as the canonical source for the "reviews" section. +/* eslint-disable */ +// @ts-nocheck — generated by catalog-eject; runtime-correct but TS strict-mode false-positives on inlined catalog body +import { Star } from "lucide-react"; +import TextAnimation from "@/components/ui/TextAnimation"; +import ImageOrVideo from "@/components/ui/ImageOrVideo"; +import ScrollReveal from "@/components/ui/ScrollReveal"; +import { cls } from "@/lib/utils"; -import React from 'react'; -import TestimonialTrustCard from '@/components/sections/testimonial/TestimonialTrustCard'; -import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary"; +const avatars = [ + { + name: "Shawn D", + imageSrc: "http://img.b2bpic.net/free-photo/happy-handsome-dark-haired-latin-man-posing-with-arms-folded-kitchen_74855-8094.jpg" + }, + { + name: "Roxanne G", + imageSrc: "http://img.b2bpic.net/free-photo/portrait-smiling-carefree-brunette-woman-sitting-couch-living-room-online-shopping_1258-201984.jpg" + }, + { + name: "Richard G", + imageSrc: "http://img.b2bpic.net/free-photo/portrait-waitress-standing-with-disposable-coffee-cup_107420-12311.jpg" + }, + { + name: "April M", + imageSrc: "http://img.b2bpic.net/free-photo/close-up-smiling-businessman-using-modern-smart-phone-young-happy-man-working-his-office-holding-cellphone_1391-602.jpg" + }, + { + name: "Lora O", + imageSrc: "http://img.b2bpic.net/free-photo/courier-delivering-groceries-home_23-2149738006.jpg" + } +]; + +type Avatar = { + name: string; +} & ({ imageSrc: string; videoSrc?: never } | { videoSrc: string; imageSrc?: never }); + +const ReviewsInline = () => { + const visibleAvatars = avatars.slice(0, 6); + const remainingCount = avatars.length - visibleAvatars.length; -export default function ReviewsSection(): React.JSX.Element { return ( -
- - - +
+
+ + {Array.from({ length: 5 }).map((_, index) => ( + + ))} + + + + + +

{"Shawn Deidrich"}

+
+ + + {visibleAvatars.map((avatar, index) => ( +
0 && "-ml-5")} + style={{ zIndex: visibleAvatars.length - index }} + > + +
+ ))} + {remainingCount > 0 && ( +
+ +{remainingCount} +
+ )} +
+
+ ); +}; + +export default function ReviewsSection() { + return ( +
+ +
); } -- 2.49.1