From 507b8089af7472c4380f1e75b608a265d60c133a Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Wed, 24 Jun 2026 22:45:05 +0000 Subject: [PATCH] Bob AI: Add popular items section with online ordering CTA --- src/pages/HomePage.tsx | 4 +- src/pages/HomePage/sections/PopularItems.tsx | 77 ++++++++++++++++++++ 2 files changed, 80 insertions(+), 1 deletion(-) create mode 100644 src/pages/HomePage/sections/PopularItems.tsx diff --git a/src/pages/HomePage.tsx b/src/pages/HomePage.tsx index 94d13e7..157268b 100644 --- a/src/pages/HomePage.tsx +++ b/src/pages/HomePage.tsx @@ -12,7 +12,8 @@ import TestimonialsSection from './HomePage/sections/Testimonials'; import FaqSection from './HomePage/sections/Faq'; import ContactSection from './HomePage/sections/Contact'; -export default function HomePage(): React.JSX.Element { + +import PopularItemsSection from './HomePage/sections/PopularItems';export default function HomePage(): React.JSX.Element { return ( <> @@ -20,6 +21,7 @@ export default function HomePage(): React.JSX.Element { + diff --git a/src/pages/HomePage/sections/PopularItems.tsx b/src/pages/HomePage/sections/PopularItems.tsx new file mode 100644 index 0000000..b0b43b4 --- /dev/null +++ b/src/pages/HomePage/sections/PopularItems.tsx @@ -0,0 +1,77 @@ +import { motion } from 'motion/react'; +import TextAnimation from '@/components/ui/TextAnimation'; +import ScrollReveal from '@/components/ui/ScrollReveal'; +import Button from '@/components/ui/Button'; +import Tag from '@/components/ui/Tag'; +import ImageOrVideo from '@/components/ui/ImageOrVideo'; + +export default function PopularItemsSection() { + const popularItems = [ + { + name: "Bean and Cheese Pupusa", + description: "Our most popular item! Melted cheese and savory refried beans inside a warm, handmade corn tortilla.", + price: "$3.50", + imageSrc: "https://picsum.photos/seed/368528480/1200/800" + }, + { + name: "Revueltas (Pork, Bean & Cheese)", + description: "The classic combination of seasoned pork chicharron, beans, and cheese.", + price: "$4.00", + imageSrc: "https://picsum.photos/seed/1350818826/1200/800" + }, + { + name: "Loroco and Cheese Pupusa", + description: "A traditional Salvadoran favorite featuring the unique, earthy flavor of loroco flower buds.", + price: "$4.00", + imageSrc: "https://picsum.photos/seed/2068017062/1200/800" + } + ]; + + return ( + + ); +} \ No newline at end of file -- 2.49.1