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

This commit is contained in:
2026-06-13 20:57:48 +00:00
parent 97ec72b94e
commit 1d33bdee9c

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="Reviews"
title="What Our Athletes Say"
description="Hear from thousands of athletes performing at their best."
testimonials={[
{
name: "Alex R.",
role: "Crossfit Athlete",
company: "Elite Gains",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/young-smiling-handsome-redhead-model-man-flannel-shirt-gray-background_613910-19110.jpg",
},
{
name: "Marcus B.",
role: "Bodybuilder",
company: "Iron Mind",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/young-adult-doing-indoor-sport-gym_23-2149205541.jpg",
},
{
name: "David L.",
role: "Running Enthusiast",
company: "RunFast",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-sportive-girl-posing-with-crossed-arms-dark-wall_176420-623.jpg",
},
{
name: "Sam T.",
role: "Personal Trainer",
company: "FitLab",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/confident-african-american-businessman-black-classic-jacket-isolated-dark-background_613910-17869.jpg",
},
{
name: "Chris J.",
role: "Powerlifter",
company: "MaxStrength",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/sporty-woman-sportswear-resting-bench-fitness_1153-9779.jpg",
},
]}
/>
</SectionErrorBoundary>
</div>
);
}