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

This commit is contained in:
2026-06-25 07:28:08 +00:00
parent c278d2ea8b
commit d02026e215

View File

@@ -1,52 +0,0 @@
// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this
// file as the canonical source for the "testimonial" section.
import React from 'react';
import TestimonialMarqueeCards from '@/components/sections/testimonial/TestimonialMarqueeCards';
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
export default function TestimonialSection(): React.JSX.Element {
return (
<div id="testimonial" data-section="testimonial">
<SectionErrorBoundary name="testimonial">
<TestimonialMarqueeCards
tag="Success Stories"
title="Loved by the Community"
description="Join thousands of members crushing their fitness goals."
testimonials={[
{
name: "Sarah J.",
role: "Athlete",
quote: "The easiest way to track macros. I've seen massive improvements in my lifting performance.",
imageSrc: "http://img.b2bpic.net/free-photo/horizontal-portrait-beautiful-stylish-sportsgirl-cropped-top-training-indoors-earphones-using-cell-phone-listening-dynamic-music-tracks_343059-3881.jpg",
},
{
name: "Mike D.",
role: "Nutritionist",
quote: "I recommend Nutri Track to all my clients. The dashboard provides clarity that leads to results.",
imageSrc: "http://img.b2bpic.net/free-photo/woman-resting-sportswear-with-smartphone_140725-16446.jpg",
},
{
name: "Jessica L.",
role: "Fitness Lover",
quote: "Tracking was always too hard until I found this app. Absolutely game-changing.",
imageSrc: "http://img.b2bpic.net/free-photo/two-happy-fit-women-looking-each-other-fitness-club_23-2147949515.jpg",
},
{
name: "David K.",
role: "Trainer",
quote: "The accountability features are essential for my clients' consistency.",
imageSrc: "http://img.b2bpic.net/free-photo/young-person-winter-time_23-2149287033.jpg",
},
{
name: "Emily R.",
role: "Wellness Coach",
quote: "It's simple, clean, and gets the job done without any fluff.",
imageSrc: "http://img.b2bpic.net/free-photo/happily-smiling-young-handsome-sporty-man-wearing-headband-wristbands-stretching-out-hand-towards-camera-showing-thumb-up-isolated-white_141793-77359.jpg",
},
]}
/>
</SectionErrorBoundary>
</div>
);
}