From ebf0ef1417b4bf0776b82d5d6464a5da9a692355 Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Tue, 5 May 2026 21:45:46 +0000 Subject: [PATCH 1/2] Bob AI: fix build error in src/pages/HomePage.tsx --- src/pages/HomePage.tsx | 115 ++++++++++++++++++++--------------------- 1 file changed, 55 insertions(+), 60 deletions(-) diff --git a/src/pages/HomePage.tsx b/src/pages/HomePage.tsx index 50c6a6b..b12ffc9 100644 --- a/src/pages/HomePage.tsx +++ b/src/pages/HomePage.tsx @@ -1,13 +1,13 @@ import AboutTestimonial from '@/components/sections/about/AboutTestimonial'; import ContactSplitForm from '@/components/sections/contact/ContactSplitForm'; -import FeaturesIconCards from '@/components/sections/features/FeaturesIconCards'; import HeroBillboard from '@/components/sections/hero/HeroBillboard'; import MetricsGradientCards from '@/components/sections/metrics/MetricsGradientCards'; -import PricingSplitCards from '@/components/sections/pricing/PricingSplitCards'; +import FeaturesImageCards from '@/components/sections/features/FeaturesImageCards'; +import ProductImageCards from '@/components/sections/product/ProductImageCards'; import ProductQuantityCards from '@/components/sections/product/ProductQuantityCards'; import TeamDetailedCards from '@/components/sections/team/TeamDetailedCards'; -import TestimonialAvatarCard from '@/components/sections/testimonial/TestimonialAvatarCard'; -import { Award, CalendarDays, Droplet, Facebook, Grape, Grid, Instagram, Linkedin, Mail, Twitter, Wine } from "lucide-react"; +import TestimonialSlidingCards from '@/components/sections/testimonial/TestimonialSlidingCards'; +import { Award, CalendarDays, Facebook, Grid, Instagram, Linkedin, Mail, Twitter } from "lucide-react"; export default function HomePage() { return ( @@ -58,25 +58,28 @@ export default function HomePage() {
- @@ -90,32 +93,32 @@ export default function HomePage() { products={[ { name: "Estate Cabernet Sauvignon", - price: "$75.00", + price: "", imageSrc: "http://img.b2bpic.net/free-photo/baroque-style-with-drinks-fruits-arrangement_23-2149629937.jpg", }, { name: "Reserve Chardonnay", - price: "$60.00", + price: "", imageSrc: "http://img.b2bpic.net/free-photo/delicious-high-quality-wine-still-life_23-2149710975.jpg", }, { name: "Sparkling Rosé Brut", - price: "$55.00", + price: "", imageSrc: "http://img.b2bpic.net/free-photo/top-view-bottle-champagne-with-glass-dark-alcohol-color-photo-drink_140725-93481.jpg", }, { name: "Pinot Noir", - price: "$70.00", + price: "", imageSrc: "http://img.b2bpic.net/free-photo/glass-bottle-rose-wine-with-various-snack-white-table_114579-75941.jpg", }, { name: "Late Harvest Riesling", - price: "$45.00", + price: "", imageSrc: "http://img.b2bpic.net/free-photo/still-life-new-year-s-decoration_23-2151842220.jpg", }, { name: "Limited Edition Syrah", - price: "$95.00", + price: "", imageSrc: "http://img.b2bpic.net/free-photo/vertical-view-red-glass-wine-bottle-family-celebration-decoration-accessories_140725-141398.jpg", }, ]} @@ -123,42 +126,28 @@ export default function HomePage() {
- @@ -251,32 +240,38 @@ export default function HomePage() {
- Date: Tue, 5 May 2026 21:47:14 +0000 Subject: [PATCH 2/2] feat: update homepage sections and navbar style - Made the navbar glassmorphic. - Replaced the static testimonial section with a dynamic, moving marquee. - Removed the pricing section entirely. - Updated the "Our Craft" section to be more visual with images. --- src/components/ui/NavbarCentered.tsx | 2 +- src/pages/HomePage.tsx | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/src/components/ui/NavbarCentered.tsx b/src/components/ui/NavbarCentered.tsx index 830f7a3..7a3e758 100644 --- a/src/components/ui/NavbarCentered.tsx +++ b/src/components/ui/NavbarCentered.tsx @@ -52,7 +52,7 @@ const NavbarCentered = ({ logo, navItems, ctaButton }: NavbarCenteredProps) => {