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 (