From 61bc609dbf0bac322257ffa27dd22313291c985a Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Thu, 2 Jul 2026 22:43:46 +0000 Subject: [PATCH] Bob AI: Add testimonials section to build trust --- src/pages/HomePage.tsx | 4 +- src/pages/HomePage/sections/Testimonials.tsx | 70 ++++++++++++++++++++ 2 files changed, 73 insertions(+), 1 deletion(-) create mode 100644 src/pages/HomePage/sections/Testimonials.tsx diff --git a/src/pages/HomePage.tsx b/src/pages/HomePage.tsx index 0a047be..9bf94a1 100644 --- a/src/pages/HomePage.tsx +++ b/src/pages/HomePage.tsx @@ -12,7 +12,8 @@ import AboutSection from './HomePage/sections/About'; import PropertiesSection from './HomePage/sections/Properties'; import ContactSection from './HomePage/sections/Contact'; -export default function HomePage(): React.JSX.Element { + +import TestimonialsSection from './HomePage/sections/Testimonials';export default function HomePage(): React.JSX.Element { return ( @@ -24,6 +25,7 @@ export default function HomePage(): React.JSX.Element { + diff --git a/src/pages/HomePage/sections/Testimonials.tsx b/src/pages/HomePage/sections/Testimonials.tsx new file mode 100644 index 0000000..6594df9 --- /dev/null +++ b/src/pages/HomePage/sections/Testimonials.tsx @@ -0,0 +1,70 @@ +import TextAnimation from '@/components/ui/TextAnimation'; +import Tag from '@/components/ui/Tag'; +import Card from '@/components/ui/Card'; +import RatingStars from '@/components/ui/RatingStars'; +import AvatarAuthor from '@/components/ui/AvatarAuthor'; +import ScrollReveal from '@/components/ui/ScrollReveal'; + +export default function TestimonialsSection() { + return ( +
+
+
+ + +

+ Discover the experiences of those who have chosen Velar Empreendimentos for their luxury real estate journey. +

+
+ +
+ {[ + { + name: "Elena Rostova", + role: "Homeowner", + quote: "Velar Empreendimentos transformed our vision into reality. The attention to detail and the quality of finishes in our new villa are simply unparalleled.", + rating: 5, + imageSrc: "https://picsum.photos/seed/1136901551/1200/800" + }, + { + name: "Marcus Sterling", + role: "Property Investor", + quote: "As an investor, I look for properties that stand the test of time. Velar's developments not only offer exceptional design but also incredible long-term value.", + rating: 5, + imageSrc: "https://picsum.photos/seed/1308587893/1200/800" + }, + { + name: "Sophia Laurent", + role: "Architect", + quote: "Collaborating with Velar is always a privilege. Their commitment to architectural excellence and sustainable luxury sets a new standard in the industry.", + rating: 5, + imageSrc: "https://picsum.photos/seed/1785662118/1200/800" + } + ].map((testimonial, index) => ( + + +
+ +

+ "{testimonial.quote}" +

+
+ +
+
+ ))} +
+
+
+ ); +} \ No newline at end of file -- 2.49.1