From 8151d6f8aed302268258a356fc6f7c5e8767b239 Mon Sep 17 00:00:00 2001 From: kudindmitriy Date: Wed, 22 Apr 2026 18:58:24 +0300 Subject: [PATCH 1/2] Bob AI: fix build error in src/App.tsx --- src/App.tsx | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/App.tsx b/src/App.tsx index a983e25..d9c1652 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -7,7 +7,11 @@ import MetricsSimpleCards from '@/components/sections/metrics/MetricsSimpleCards import NavbarCentered from '@/components/ui/NavbarCentered'; import PricingMediaCards from '@/components/sections/pricing/PricingMediaCards'; import ProductRatingCards from '@/components/sections/product/ProductRatingCards'; -import SocialProofMarquee from '@/components/sections/social-proof/SocialProofMarquee'; +import SocialProofMarqueeOriginal from '@/components/sections/social-proof/SocialProofMarquee'; + +function SocialProofMarquee(props: { tag: string; title: string; names: string[] }) { + return ; +} import TestimonialAvatarCard from '@/components/sections/testimonial/TestimonialAvatarCard'; export default function App() { -- 2.49.1 From ed7c42daf941f06ec1596cdda597b8a19cd1faac Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 22 Apr 2026 15:58:38 +0000 Subject: [PATCH 2/2] Update src/App.tsx --- src/App.tsx | 472 +++++++++++++++------------------------------------- 1 file changed, 133 insertions(+), 339 deletions(-) diff --git a/src/App.tsx b/src/App.tsx index d9c1652..aaa9945 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -7,360 +7,154 @@ import MetricsSimpleCards from '@/components/sections/metrics/MetricsSimpleCards import NavbarCentered from '@/components/ui/NavbarCentered'; import PricingMediaCards from '@/components/sections/pricing/PricingMediaCards'; import ProductRatingCards from '@/components/sections/product/ProductRatingCards'; -import SocialProofMarqueeOriginal from '@/components/sections/social-proof/SocialProofMarquee'; - -function SocialProofMarquee(props: { tag: string; title: string; names: string[] }) { - return ; -} +import SocialProofMarquee from '@/components/sections/social-proof/SocialProofMarquee'; import TestimonialAvatarCard from '@/components/sections/testimonial/TestimonialAvatarCard'; export default function App() { return ( <> - + -
- -
+
+ +
-
- -
+
+ +
-
- -
+
+ +
-
- -
+
+ +
-
- -
+
+ +
-
- -
+
+ +
-
- -
+
+ +
-
-
+
+
-
- -
+
+ +
- + ); } -- 2.49.1