From 6ce9e1e1830d3242711755b0d0672c4607ace0c9 Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Thu, 23 Apr 2026 12:24:44 +0000 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 1a2d2bc..9d085be 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -1,4 +1,8 @@ -import AboutTestimonial from '@/components/sections/about/AboutTestimonial'; +import _AboutTestimonial from '@/components/sections/about/AboutTestimonial'; +const AboutTestimonial = (props: any) => { + const { name, ...rest } = props; + return <_AboutTestimonial {...rest} />; +}; import ContactCenter from '@/components/sections/contact/ContactCenter'; import FaqSimple from '@/components/sections/faq/FaqSimple'; import FeaturesTaggedCards from '@/components/sections/features/FeaturesTaggedCards'; -- 2.49.1 From 687e8a3c108f1e1da9b56db68554607cd58b0667 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 23 Apr 2026 12:24:52 +0000 Subject: [PATCH 2/2] Update src/App.tsx --- src/App.tsx | 357 ++++++++++++++++------------------------------------ 1 file changed, 109 insertions(+), 248 deletions(-) diff --git a/src/App.tsx b/src/App.tsx index 9d085be..9b4aabf 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -1,8 +1,4 @@ -import _AboutTestimonial from '@/components/sections/about/AboutTestimonial'; -const AboutTestimonial = (props: any) => { - const { name, ...rest } = props; - return <_AboutTestimonial {...rest} />; -}; +import AboutTestimonial from '@/components/sections/about/AboutTestimonial'; import ContactCenter from '@/components/sections/contact/ContactCenter'; import FaqSimple from '@/components/sections/faq/FaqSimple'; import FeaturesTaggedCards from '@/components/sections/features/FeaturesTaggedCards'; @@ -15,257 +11,122 @@ import TestimonialRatingCards from '@/components/sections/testimonial/Testimonia export default function App() { return ( <> - + -
- -
+
+ +
-
- -
+
+ +
-
- -
+
+ +
-
- -
+
+ +
-
- -
+
+ +
-
- -
+
+ +
-
- -
+
+ +
- + ); } -- 2.49.1