From 99218ea3ee834a500a6096f52a773dd5b2d111af Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Tue, 21 Apr 2026 06:56:11 +0000 Subject: [PATCH] Bob AI: Replace the existing hero section with the 'Hero Billboard C --- src/App.tsx | 5 ---- .../sections/hero/HeroBillboardCarousel.tsx | 27 ++++++++----------- 2 files changed, 11 insertions(+), 21 deletions(-) diff --git a/src/App.tsx b/src/App.tsx index cfadd8e..ada5b9b 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -85,11 +85,6 @@ export default function App() { imageSrc: "http://img.b2bpic.net/free-photo/top-view-plastic-box-with-leftover-cookie_23-2148666825.jpg?_wi=1", }, ]} - testimonials={[ - { name: "Sarah J.", review: "The Kimchi Carbonara is absolutely divine! A perfect blend of creamy and spicy. I could eat this every day." }, - { name: "Michael K.", review: "Incredible flavors and super fast delivery. SeoulPasta is my new go-to for takeout. The Gochujang Bolognese is a must-try." }, - { name: "Emily R.", review: "I was skeptical about Korean-Italian fusion, but I'm a convert! The Bulgogi Lasagna was rich, savory, and so unique." }, - ]} /> diff --git a/src/components/sections/hero/HeroBillboardCarousel.tsx b/src/components/sections/hero/HeroBillboardCarousel.tsx index dd032cc..0b5cf80 100644 --- a/src/components/sections/hero/HeroBillboardCarousel.tsx +++ b/src/components/sections/hero/HeroBillboardCarousel.tsx @@ -3,8 +3,7 @@ import useEmblaCarousel from "embla-carousel-react"; import { useCarouselControls } from "@/hooks/useCarouselControls"; import Button from "@/components/ui/Button"; -import TestimonialCard from "@/components/shared/TestimonialCard"; -import { ChevronLeft, ChevronRight } from "lucide-react"; +import { ChevronLeft, ChevronRight, Star } from "lucide-react"; type Slide = { tag: string; @@ -15,17 +14,11 @@ type Slide = { imageSrc: string; }; -type Testimonial = { - name: string; - review: string; -}; - type HeroBillboardCarouselProps = { slides: Slide[]; - testimonials: Testimonial[]; }; -const HeroBillboardCarousel = ({ slides, testimonials }: HeroBillboardCarouselProps) => { +const HeroBillboardCarousel = ({ slides }: HeroBillboardCarouselProps) => { const [emblaRef, emblaApi] = useEmblaCarousel({ loop: true }); const { scrollPrev, scrollNext, scrollProgress } = useCarouselControls(emblaApi); @@ -62,14 +55,16 @@ const HeroBillboardCarousel = ({ slides, testimonials }: HeroBillboardCarouselPr -
-
-
- {testimonials.map((testimonial, index) => ( - - ))} -
+
+
+ + + + +
+
+

10,000+ happy customers

);