import { Container } from "@/components/container"; import { Heading } from "@/components/heading"; import { Subheading } from "@/components/subheading"; import { Star } from "lucide-react"; const reviews = [ { name: "Mr. Henderson", role: "Neighbor", content: "These boys are incredible. They spent 3 hours on my truck and it looks better than when I take it to the professional shop in town. Great work ethic!", stars: 5 }, { name: "Mrs. Gable", role: "Local Resident", content: "So impressed with their politeness and attention to detail. They got all the dog hair out of my SUV. Highly recommend supporting these young men.", stars: 5 }, { name: "Coach Miller", role: "Family Friend", content: "Hardest working 13-year-olds I know. They've detailed my car three times now and it's perfect every time. Real hustle.", stars: 5 } ]; export function Testimonials() { return (
Trusted by Our Neighbors We're proud to serve the Cedar Rapids community.
{reviews.map((review, i) => (
{[...Array(review.stars)].map((_, i) => ( ))}

"{review.content}"

{review.name}

{review.role}

))}
); }