diff --git a/lib/features/home/presentation/widgets/testimonials_section.dart b/lib/features/home/presentation/widgets/testimonials_section.dart index cf5ece3..393971e 100644 --- a/lib/features/home/presentation/widgets/testimonials_section.dart +++ b/lib/features/home/presentation/widgets/testimonials_section.dart @@ -9,47 +9,47 @@ import 'package:real_estate_mobile/features/home/presentation/providers/home_pro const _defaultTestimonials = [ TestimonialItem( rating: 5, - title: 'I have been working with Lorem ..', + title: 'No Longer Blood in the Water', content: - 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean commodo ligula eget dolor. Sed dignissim, nisl eget tincidunt vulputate, lacus justo bibendum ipsum, vitae tempus risus lorem at nunc. Integer sed arcu vitae risus feugiat vehicula. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas.', - author: 'Conor Kenney', - role: 'Chief Operations Officer', + 'Using other sites to find a realtor ended with my phone ringing constantly. My number was sold off to multiple lists and it was so overwhelming. RE-Quest gave me confidence that my information was protected and I decided who I was in contact with.', + author: 'Alice T.', + role: '', ), TestimonialItem( rating: 5, - title: 'I have been working with Lorem ..', + title: 'Finding Someone Who Worked with Me', content: - 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean commodo ligula eget dolor. Sed dignissim, nisl eget tincidunt vulputate, lacus justo bibendum ipsum, vitae tempus risus lorem at nunc. Integer sed arcu vitae risus feugiat vehicula. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas.', - author: 'Conor Kenney', - role: 'Chief Operations Officer', + 'RE-Quest let me narrow down my search terms, so I knew before I called that they had experience with the loan program I needed. I loved the in-app chat feature to talk to my short list before committing to a phone call.', + author: 'Kevin R.', + role: '', ), TestimonialItem( rating: 5, - title: 'I have been working with Lorem ..', + title: '', content: - 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean commodo ligula eget dolor. Sed dignissim, nisl eget tincidunt vulputate, lacus justo bibendum ipsum, vitae tempus risus lorem at nunc. Integer sed arcu vitae risus feugiat vehicula. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas.', - author: 'Conor Kenney', - role: 'Chief Operations Officer', + 'The search terms on RE-Quest allowed me to show off my expertise as an agent. Now when leads reach out to me, they already have an idea of what kind of agent I am. Instant connection!', + author: 'Riley S.', + role: '', ), ]; /// Default section content — matches web's hardcoded defaultContent fallback. const _defaultContent = TestimonialsContent( - title: "Our Clients' Trust Is Our Foundation", + title: 'Consumer Protection is Our Foundation', subtitle: - 'We help buyers, sellers, and investors close successful real estate deals with confidence in every transaction.', + "Buying or selling your home is one of the largest decisions you will make in your life. Don't let yourself be chased by salesmen. Find the service provider that matches your unique needs.", ratingInfo: 'Clients rate our real estate services 4.9 out of 5 on average, based on recent client reviews.', stats: [ StatItem( iconPath: 'cities', - boldText: '25+ Cities &', - normalText: 'neighborhoods served', + boldText: '3 states', + normalText: 'and counting', ), StatItem( iconPath: 'properties', - boldText: '1,000+ Properties', - normalText: 'bought and sold for our clients.', + boldText: 'Hundreds of', + normalText: 'Professionals', ), ], testimonials: _defaultTestimonials, diff --git a/lib/features/home/presentation/widgets/trust_stats_section.dart b/lib/features/home/presentation/widgets/trust_stats_section.dart index 24ab9ed..1c9fe83 100644 --- a/lib/features/home/presentation/widgets/trust_stats_section.dart +++ b/lib/features/home/presentation/widgets/trust_stats_section.dart @@ -7,21 +7,21 @@ import 'package:real_estate_mobile/features/home/presentation/providers/home_pro /// Default content — matches web's hardcoded defaultContent fallback. const _defaultContent = TestimonialsContent( - title: "Our Clients' Trust Is Our Foundation", + title: 'Consumer Protection is Our Foundation', subtitle: - 'We help buyers, sellers, and investors close successful real estate deals with confidence in every transaction.', + "Buying or selling your home is one of the largest decisions you will make in your life. Don't let yourself be chased by salesmen. Find the service provider that matches your unique needs.", ratingInfo: 'Clients rate our real estate services 4.9 out of 5 on average, based on recent client reviews.', stats: [ StatItem( iconPath: 'cities', - boldText: '25+ Cities &', - normalText: 'neighborhoods served', + boldText: '3 states', + normalText: 'and counting', ), StatItem( iconPath: 'properties', - boldText: '1,000+ Properties', - normalText: 'bought and sold for our clients.', + boldText: 'Hundreds of', + normalText: 'Professionals', ), ], testimonials: [],