From bf5f3194a9a7c83e621cd9b4f91da1281cef1882 Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Tue, 28 Apr 2026 05:29:02 +0000 Subject: [PATCH] Bob AI: [SECTION ADD OPERATION] You must create a COMPLETELY NEW sec --- .../sections/social-proof/SocialProofOne.tsx | 58 +++++++++++++++++++ src/pages/HomePage.tsx | 1 + 2 files changed, 59 insertions(+) create mode 100644 src/components/sections/social-proof/SocialProofOne.tsx diff --git a/src/components/sections/social-proof/SocialProofOne.tsx b/src/components/sections/social-proof/SocialProofOne.tsx new file mode 100644 index 0000000..683cf5a --- /dev/null +++ b/src/components/sections/social-proof/SocialProofOne.tsx @@ -0,0 +1,58 @@ +import TextAnimation from "@/components/ui/TextAnimation"; +import InfoCardMarquee from "@/components/ui/InfoCardMarquee"; + +export default function SocialProofOne() { + const testimonials = [ + { + icon: "Star", + label: "John Doe", + value: "The best car rental experience I've ever had. Highly recommended!" + }, + { + icon: "Star", + label: "Jane Smith", + value: "Incredible selection of luxury vehicles. Will definitely use again." + }, + { + icon: "Star", + label: "Michael Johnson", + value: "Smooth process from start to finish. The Ferrari was a dream." + }, + { + icon: "Star", + label: "Emily Davis", + value: "Exceptional customer service and pristine cars." + }, + { + icon: "Star", + label: "Chris Wilson", + value: "A truly premium experience. The Porsche 911 was flawless." + } + ]; + + return ( +
+
+
+ Testimonials + + +
+ +
+ +
+
+
+ ); +} \ No newline at end of file diff --git a/src/pages/HomePage.tsx b/src/pages/HomePage.tsx index bcf5f4f..ac635e9 100644 --- a/src/pages/HomePage.tsx +++ b/src/pages/HomePage.tsx @@ -4,6 +4,7 @@ import HeroBillboard from "@/components/sections/hero/HeroBillboard"; import FeaturesAlternatingSplit from "@/components/sections/features/FeaturesAlternatingSplit"; import ContactCta from "@/components/sections/contact/ContactCta"; import FooterSimple from "@/components/sections/footer/FooterSimple"; +import SocialProofOne from '@/components/sections/social-proof/SocialProofOne'; export default function HomePage() { return (