Bob AI: fix build error in src/pages/HomePage.tsx

This commit is contained in:
kudinDmitriyUp
2026-06-16 01:22:22 +00:00
parent 1b54e020da
commit e780d67f0f

View File

@@ -4,7 +4,15 @@ import FeaturesImageBento from '@/components/sections/features/FeaturesImageBent
import FeaturesRevealCards from '@/components/sections/features/FeaturesRevealCards';
import HeroOverlayMarquee from '@/components/sections/hero/HeroOverlayMarquee';
import MetricsMediaCards from '@/components/sections/metrics/MetricsMediaCards';
import TestimonialColumnMarqueeCards from '@/components/sections/testimonial/TestimonialColumnMarqueeCards';
import OriginalTestimonialColumnMarqueeCards from '@/components/sections/testimonial/TestimonialColumnMarqueeCards';
const TestimonialColumnMarqueeCards = (props: any) => {
const items = props.items?.map((item: any) => {
const { id, ...rest } = item;
return rest;
});
return <OriginalTestimonialColumnMarqueeCards {...props} items={items} />;
};
import { Award, Box, Download, Globe, Globe2, Palette } from "lucide-react";
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";