import React from 'react'; import { Star, BadgeCheck } from 'lucide-react'; const REVIEWS = [ { name: "Alex Chen", role: "Software Engineer", text: "Finally, an app that understands biology. No red text, just adjustments. I treat my body like a system now, not a moral failing.", rating: 5 }, { name: "Sarah Jenkins", role: "Product Manager", text: "The Training Day toggle is a game changer for my hypertrophy blocks. I eat 800 calories more on leg days and I'm leaner than ever.", rating: 5 }, { name: "Marcus Ford", role: "Powerlifter", text: "I used to binge after 'failing' my diet. FitMate just recalculates the route. It's removed the anxiety completely.", rating: 5 }, { name: "Elena R.", role: "Marathon Runner", text: "The fueling strategies for long run days vs recovery days are spot on. My recovery metrics have never been better.", rating: 5 }, { name: "David Kim", role: "Data Analyst", text: "Love the trend weight visualization. Scale weight is so noisy, this app helps me see the signal in the noise.", rating: 5 }, { name: "Jessica T.", role: "CrossFit Athlete", text: "It doesn't just track; it directs. I wake up and know exactly what the mission is for the day.", rating: 5 } ]; export const Testimonials: React.FC = () => { return (

Trust the Process.

Join thousands of high-performers who stopped guessing.

{REVIEWS.map((review, idx) => (
{[...Array(review.rating)].map((_, i) => ( ))}

"{review.text}"

{review.name}
{review.role}
))}
); };