Switch to version 1: remove src/pages/HomePage/sections/Testimonials.tsx

This commit is contained in:
2026-06-25 11:07:41 +00:00
parent daeb7655c7
commit db8539bcb5

View File

@@ -1,57 +0,0 @@
// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this
// file as the canonical source for the "testimonials" section.
import React from 'react';
import TestimonialOverlayCards from '@/components/sections/testimonial/TestimonialOverlayCards';
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
export default function TestimonialsSection(): React.JSX.Element {
return (
<div id="testimonials" data-section="testimonials">
<SectionErrorBoundary name="testimonials">
<TestimonialOverlayCards
tag="Testimonials"
title="Client Experience"
description="See why homeowners trust us with their vision."
testimonials={[
{
name: "Layla F.",
role: "Homeowner",
company: "Beirut",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/modern-kitchen-island-with-fluted-glass-cabinets-stylish-interior-with-builtin-appliances_169016-72717.jpg",
},
{
name: "Karim M.",
role: "Investor",
company: "Metn",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/neoclassical-style-interior-design-with-decor-furnishings_23-2151199410.jpg",
},
{
name: "Nour H.",
role: "Designer",
company: "Jbeil",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/people-with-paper-tablet-office_23-2147668750.jpg",
},
{
name: "Samir A.",
role: "Client",
company: "Tripoli",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/woman-working-with-ruler-close-up_23-2148966942.jpg",
},
{
name: "Rania S.",
role: "Homeowner",
company: "Baabda",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/attractive-woman-reading-magazine-near-panoramic-window_7502-9287.jpg",
},
]}
/>
</SectionErrorBoundary>
</div>
);
}